diff options
author | Jani Välimaa <wally@mageia.org> | 2024-02-24 15:50:54 +0200 |
---|---|---|
committer | Jani Välimaa <wally@mageia.org> | 2024-02-29 23:47:40 +0200 |
commit | 3beee1152f81c175816800aadfc33dccfe8e8dee (patch) | |
tree | b4402ede4954ee4bdb1dc0ea95838485415a2893 | |
parent | aa82485400f95e8a64acaff9374a31d53dfe5e12 (diff) | |
download | rpm-setup-3beee1152f81c175816800aadfc33dccfe8e8dee.tar rpm-setup-3beee1152f81c175816800aadfc33dccfe8e8dee.tar.gz rpm-setup-3beee1152f81c175816800aadfc33dccfe8e8dee.tar.bz2 rpm-setup-3beee1152f81c175816800aadfc33dccfe8e8dee.tar.xz rpm-setup-3beee1152f81c175816800aadfc33dccfe8e8dee.zip |
rpmrc: add SSE2 support to i686 default flags
Default compiler flags are now '-march=i686 -msse2 -mtune=generic -mfpmath=sse -mstackrealign'.
-mstackrealign adds optimal backwards compatibility due to automatic stack realignment.
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | rpmrc.in | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -1,3 +1,5 @@ +- rpmrc: add SSE2 support to i686 default flags + Version 2.74.2 - 29 February 2024, by Jani Välimaa - rpmrc: remove -fstack-clash-protection from armv7 default flags @@ -7,7 +7,7 @@ optflags: i386 %{__common_cflags_with_ssp} -fomit-frame-pointer -march=i386 -fasynchronous-unwind-tables -fstack-clash-protection optflags: i486 %{__common_cflags_with_ssp} -fomit-frame-pointer -march=i486 -fasynchronous-unwind-tables -fstack-clash-protection optflags: i586 %{__common_cflags_with_ssp} -fomit-frame-pointer -march=i586 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -optflags: i686 %{__common_cflags_with_ssp} -fomit-frame-pointer -march=i686 -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection=full +optflags: i686 %{__common_cflags_with_ssp} -fomit-frame-pointer -march=i686 -msse2 -mtune=generic -mfpmath=sse -mstackrealign -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection=full optflags: athlon %{__common_cflags_with_ssp} -fomit-frame-pointer -march=athlon -fasynchronous-unwind-tables -fstack-clash-protection optflags: x86_64 %{__common_cflags_with_ssp} -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection=full |