diff options
author | Jani Välimaa <wally@mageia.org> | 2024-03-01 00:14:04 +0200 |
---|---|---|
committer | Jani Välimaa <wally@mageia.org> | 2024-03-01 07:49:32 +0200 |
commit | 34217553244dab6bdd79802bb441956cc86892e9 (patch) | |
tree | 1ac9fe071574853b0d649615db1d9a43e37e9d3d | |
parent | f038217852fba2f566bf0d8503caa92c94450365 (diff) | |
download | rpm-setup-34217553244dab6bdd79802bb441956cc86892e9.tar rpm-setup-34217553244dab6bdd79802bb441956cc86892e9.tar.gz rpm-setup-34217553244dab6bdd79802bb441956cc86892e9.tar.bz2 rpm-setup-34217553244dab6bdd79802bb441956cc86892e9.tar.xz rpm-setup-34217553244dab6bdd79802bb441956cc86892e9.zip |
rpmrc: explicitly select 32-bit or 64-bit build on ix86 and x86_64 architectures
-rw-r--r-- | NEWS | 1 | ||||
-rw-r--r-- | rpmrc.in | 12 |
2 files changed, 7 insertions, 6 deletions
@@ -1,3 +1,4 @@ +- rpmrc: explicitly select 32-bit or 64-bit build on ix86 and x86_64 architectures - rpmrc: update build arch for i686 cabable arches - rpmrc: add SSE2 support to i686 default flags @@ -4,12 +4,12 @@ ############################################################# # Values for RPM_OPT_FLAGS for various platforms -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 -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 +optflags: i386 %{__common_cflags_with_ssp} -fomit-frame-pointer -m32 -march=i386 -fasynchronous-unwind-tables -fstack-clash-protection +optflags: i486 %{__common_cflags_with_ssp} -fomit-frame-pointer -m32 -march=i486 -fasynchronous-unwind-tables -fstack-clash-protection +optflags: i586 %{__common_cflags_with_ssp} -fomit-frame-pointer -m32 -march=i586 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection +optflags: i686 %{__common_cflags_with_ssp} -fomit-frame-pointer -m32 -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 -m32 -march=athlon -fasynchronous-unwind-tables -fstack-clash-protection +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 |