diff options
author | Richard Biener <rguenther@suse.de> | 2023-01-13 08:53:44 +0100 |
---|---|---|
committer | Richard Biener <rguenther@suse.de> | 2023-01-27 15:46:30 +0100 |
commit | 6cdb4d4bcd52c95cb6d367b93a82eb599d4e26f0 (patch) | |
tree | 1b339b132afecde02eed7387ad1b8cdd37440046 /gcc | |
parent | ed0a765ef9b7be420fc4cf6e653fc7350f84981c (diff) | |
download | gcc-6cdb4d4bcd52c95cb6d367b93a82eb599d4e26f0.zip gcc-6cdb4d4bcd52c95cb6d367b93a82eb599d4e26f0.tar.gz gcc-6cdb4d4bcd52c95cb6d367b93a82eb599d4e26f0.tar.bz2 |
mips: Don't add crtfastmath.o for -shared
Don't add crtfastmath.o for -shared to avoid altering the FP
environment when loading a shared library.
PR target/55522
* config/mips/gnu-user.h (GNU_USER_TARGET_MATHFILE_SPEC):
Don't add crtfastmath.o for -shared.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/mips/gnu-user.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/mips/gnu-user.h b/gcc/config/mips/gnu-user.h index 9a540b8..a4e5380 100644 --- a/gcc/config/mips/gnu-user.h +++ b/gcc/config/mips/gnu-user.h @@ -139,7 +139,7 @@ extern const char *host_detect_local_cpu (int argc, const char **argv); /* Similar to standard Linux, but adding -ffast-math support. */ #undef GNU_USER_TARGET_MATHFILE_SPEC #define GNU_USER_TARGET_MATHFILE_SPEC \ - "%{Ofast|ffast-math|funsafe-math-optimizations:crtfastmath.o%s}" + "%{Ofast|ffast-math|funsafe-math-optimizations:%{!shared:crtfastmath.o%s}}" #undef ENDFILE_SPEC #define ENDFILE_SPEC \ GNU_USER_TARGET_MATHFILE_SPEC " " \ |