diff options
author | Eric Christopher <echristo@apple.com> | 2007-06-16 02:43:57 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gcc.gnu.org> | 2007-06-16 02:43:57 +0000 |
commit | 1d2b1d91675ba5a26e4d04b209355047421adf92 (patch) | |
tree | 9393ef91f5bddbb6ee56c1a2e6ea5876c10a0792 /gcc/config/i386/darwin.h | |
parent | b42c318374d46ec5dbaa70ce262c0863a8d3ff73 (diff) | |
download | gcc-1d2b1d91675ba5a26e4d04b209355047421adf92.tar.gz |
config.gcc (i?86-*-darwin*): Add t-crtfm and t-crtpc.
2007-06-15 Eric Christopher <echristo@apple.com>
* config.gcc (i?86-*-darwin*): Add t-crtfm and t-crtpc.
(x86_64-*-darwin*): Ditto.
* config/i386/darwin.h (CRTEND_SPEC): New. Add support
for above.
From-SVN: r125754
Diffstat (limited to 'gcc/config/i386/darwin.h')
-rw-r--r-- | gcc/config/i386/darwin.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gcc/config/i386/darwin.h b/gcc/config/i386/darwin.h index 9cc5e542445..d793e025665 100644 --- a/gcc/config/i386/darwin.h +++ b/gcc/config/i386/darwin.h @@ -108,6 +108,13 @@ Boston, MA 02110-1301, USA. */ ,objective-c++-header|,objc++-cpp-output:10.5; \ :10.4}" +#undef ENDFILE_SPEC +#define ENDFILE_SPEC \ + "%{ffast-math|funsafe-math-optimizations:crtfastmath.o%s} \ + %{mpc32:crtprec32.o%s} \ + %{mpc64:crtprec64.o%s} \ + %{mpc80:crtprec80.o%s}" + #undef SUBTARGET_EXTRA_SPECS #define SUBTARGET_EXTRA_SPECS \ DARWIN_EXTRA_SPECS \ |