diff options
author | Jani Välimaa <wally@mageia.org> | 2024-03-02 09:49:07 +0200 |
---|---|---|
committer | Jani Välimaa <wally@mageia.org> | 2024-03-02 09:49:07 +0200 |
commit | 6b3a5fd080b15cb58535b1277b683dae6b001044 (patch) | |
tree | 4a3a978eb2d31da689bbb78096456916e7eb155b | |
parent | 34217553244dab6bdd79802bb441956cc86892e9 (diff) | |
download | rpm-setup-6b3a5fd080b15cb58535b1277b683dae6b001044.tar rpm-setup-6b3a5fd080b15cb58535b1277b683dae6b001044.tar.gz rpm-setup-6b3a5fd080b15cb58535b1277b683dae6b001044.tar.bz2 rpm-setup-6b3a5fd080b15cb58535b1277b683dae6b001044.tar.xz rpm-setup-6b3a5fd080b15cb58535b1277b683dae6b001044.zip |
rpmrc: sort armv7 optflags
-rw-r--r-- | rpmrc.in | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -12,11 +12,11 @@ optflags: athlon %{__common_cflags_with_ssp} -fomit-frame-pointer -m32 -march=at optflags: x86_64 %{__common_cflags_with_ssp} -m64 -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 -optflags: armv7l %{__common_cflags_with_ssp} -march=armv7-a -mtune=cortex-a8 -mfpu=neon -mfloat-abi=softfp +optflags: armv7 %{__common_cflags_with_ssp} -march=armv7-a -mfpu=neon -mtune=cortex-a8 -mfloat-abi=softfp +optflags: armv7l %{__common_cflags_with_ssp} -march=armv7-a -mfpu=neon -mtune=cortex-a8 -mfloat-abi=softfp -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: armv7hl %{__common_cflags_with_ssp} -march=armv7-a -mfpu=vfpv3-d16 -mfloat-abi=hard +optflags: armv7hnl %{__common_cflags_with_ssp} -march=armv7-a -mfpu=neon -mfloat-abi=hard optflags: aarch64 %{__common_cflags_with_ssp} -mbranch-protection=standard -fasynchronous-unwind-tables -fstack-clash-protection |