diff options
author | Jani Välimaa <wally@mageia.org> | 2024-02-29 21:10:50 +0200 |
---|---|---|
committer | Jani Välimaa <wally@mageia.org> | 2024-02-29 21:10:50 +0200 |
commit | 88173afe674f0da36c1b63601ce106881728bf55 (patch) | |
tree | 697fd4cf1ff4659a95d642472771e631fdfaf2ed | |
parent | 7c74fb84a6def20dd4c81ec444f88be4d9cba729 (diff) | |
download | rpm-setup-88173afe674f0da36c1b63601ce106881728bf55.tar rpm-setup-88173afe674f0da36c1b63601ce106881728bf55.tar.gz rpm-setup-88173afe674f0da36c1b63601ce106881728bf55.tar.bz2 rpm-setup-88173afe674f0da36c1b63601ce106881728bf55.tar.xz rpm-setup-88173afe674f0da36c1b63601ce106881728bf55.zip |
rpmrc: remove -fstack-clash-protection from armv7 default flags
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | rpmrc.in | 8 |
2 files changed, 6 insertions, 4 deletions
@@ -1,3 +1,5 @@ +- rpmrc: remove -fstack-clash-protection from armv7 default flags + Version 2.74.1 - 23 February 2024, by Jani Välimaa - rpmrc: remove -fcf-protection=full from i586 default flags (needs i686 or newer) @@ -12,11 +12,11 @@ optflags: athlon %{__common_cflags_with_ssp} -fomit-frame-pointer -march=athlon optflags: x86_64 %{__common_cflags_with_ssp} -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection=full # Cortex A8 -optflags: armv7 %{__common_cflags_with_ssp} -march=armv7-a -mtune=cortex-a8 -mfpu=neon -mfloat-abi=softfp -fstack-clash-protection -optflags: armv7l %{__common_cflags_with_ssp} -march=armv7-a -mtune=cortex-a8 -mfpu=neon -mfloat-abi=softfp -fstack-clash-protection +optflags: armv7 %{__common_cflags_with_ssp} -march=armv7-a -mtune=cortex-a8 -mfpu=neon -mfloat-abi=softfp +optflags: armv7l %{__common_cflags_with_ssp} -march=armv7-a -mtune=cortex-a8 -mfpu=neon -mfloat-abi=softfp -optflags: armv7hl %{__common_cflags_with_ssp} -march=armv7-a -mfloat-abi=hard -mfpu=vfpv3-d16 -fstack-clash-protection -optflags: armv7hnl %{__common_cflags_with_ssp} -march=armv7-a -mfloat-abi=hard -mfpu=neon -fstack-clash-protection +optflags: armv7hl %{__common_cflags_with_ssp} -march=armv7-a -mfloat-abi=hard -mfpu=vfpv3-d16 +optflags: armv7hnl %{__common_cflags_with_ssp} -march=armv7-a -mfloat-abi=hard -mfpu=neon optflags: aarch64 %{__common_cflags_with_ssp} -mbranch-protection=standard -fasynchronous-unwind-tables -fstack-clash-protection |