diff options
author | Richard Guenther <rguenther@suse.de> | 2006-01-31 11:56:46 +0000 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2006-01-31 11:56:46 +0000 |
commit | 0058967bb0b6d9395ceae3916f85ba7bcbfa3e8f (patch) | |
tree | 1bd09a73712c40d7c7750282692a1f094c832bba /gcc | |
parent | 842173466d766db080cbc9e837988e31b453d05f (diff) | |
download | gcc-0058967bb0b6d9395ceae3916f85ba7bcbfa3e8f.zip gcc-0058967bb0b6d9395ceae3916f85ba7bcbfa3e8f.tar.gz gcc-0058967bb0b6d9395ceae3916f85ba7bcbfa3e8f.tar.bz2 |
Makefile.def (target_modules): Add libgcc-math target module.
2006-01-31 Richard Guenther <rguenther@suse.de>
Paolo Bonzini <bonzini@gnu.org>
* Makefile.def (target_modules): Add libgcc-math target module.
* configure.in (target_libraries): Add libgcc-math target library.
(--enable-libgcc-math): New configure switch.
* Makefile.in: Re-generate.
* configure: Re-generate.
* libgcc-math: New toplevel directory.
* doc/install.texi (--disable-libgcc-math): Document.
libgcc-math/
* configure.ac: New file.
* Makefile.am: Likewise.
* configure: New generated file.
* Makefile.in: Likewise.
* aclocal.m4: Likewise.
* libtool-version: New file.
* include/ieee754.h: New file.
* include/libc-symbols.h: Likewise.
* include/math_private.h: Likewise.
* i386/Makefile.am: New file.
* i386/Makefile.in: New generated file.
* i386/sse2.h: New file.
* i386/endian.h: Likewise.
* i386/sse2.map: Linker script for SSE2 ABI math intrinsics.
* flt-32/: Import from glibc.
* dbl-64/: Likewise.
Co-Authored-By: Paolo Bonzini <bonzini@gnu.org>
From-SVN: r110434
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/doc/install.texi | 4 |
2 files changed, 9 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 9dd204d..58a53d8 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2006-01-31 Richard Guenther <rguenther@suse.de> + Paolo Bonzini <bonzini@gnu.org> + + * doc/install.texi (--disable-libgcc-math): Document. + 2006-01-30 Marcin Dalecki <martin@dalecki.de> * expr.h (expand_normal): new inline function. diff --git a/gcc/doc/install.texi b/gcc/doc/install.texi index 0552cd5..b845905 100644 --- a/gcc/doc/install.texi +++ b/gcc/doc/install.texi @@ -1086,6 +1086,10 @@ do a @samp{make -C gcc gnatlib_and_tools}. Specify that the run-time libraries for stack smashing protection should not be built. +@item --disable-libgcc-math +Specify that the run-time libraries for arch and gcc specific math +functions should not be built. + @item --with-dwarf2 Specify that the compiler should use DWARF 2 debugging information as the default. |