4c63cb687e
I would like to try to move the optflags definition into the macro file to make it cleaner and easier to maintain, so to make that easier, I wanted to start by removing unsupported arches, so there is less code to move.
32 lines
1.9 KiB
Plaintext
32 lines
1.9 KiB
Plaintext
include: /usr/lib/rpm/rpmrc
|
|
|
|
optflags: i386 %{__global_compiler_flags} -m32 -march=i386 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection
|
|
optflags: i486 %{__global_compiler_flags} -m32 -march=i486 -fasynchronous-unwind-tables -fstack-clash-protection
|
|
optflags: i586 %{__global_compiler_flags} -m32 -march=i586 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection
|
|
optflags: i686 %{__global_compiler_flags} -m32 -march=i686 -mtune=generic -msse2 -mfpmath=sse -mstackrealign -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection
|
|
optflags: athlon %{__global_compiler_flags} -m32 -march=athlon -fasynchronous-unwind-tables -fstack-clash-protection
|
|
optflags: x86_64 %{__global_compiler_flags} -m64 %{__cflags_arch_x86_64} -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection
|
|
|
|
optflags: ppc64le %{__global_compiler_flags} -m64 %{__cflags_arch_ppc64le} -fasynchronous-unwind-tables -fstack-clash-protection
|
|
|
|
# TODO: Remove armv7hl once f36 goes EOL.
|
|
optflags: armv7hl %{__global_compiler_flags} -march=armv7-a -mfpu=vfpv3-d16 -mtune=generic-armv7-a -mabi=aapcs-linux -mfloat-abi=hard
|
|
|
|
optflags: s390x %{__global_compiler_flags} -m64 %{__cflags_arch_s390x} -fasynchronous-unwind-tables -fstack-clash-protection
|
|
|
|
optflags: aarch64 %{__global_compiler_flags} -mbranch-protection=standard -fasynchronous-unwind-tables %[ "%{toolchain}" == "gcc" ? "-fstack-clash-protection" : "" ]
|
|
|
|
optflags: riscv64 %{__global_compiler_flags} -fasynchronous-unwind-tables %[ "%{toolchain}" == "gcc" ? "-fstack-clash-protection" : "" ]
|
|
|
|
# set build arch to fedora buildarches on hardware capable of running it
|
|
# saves having to do rpmbuild --target=
|
|
buildarchtranslate: athlon: i686
|
|
buildarchtranslate: geode: i686
|
|
buildarchtranslate: pentium4: i686
|
|
buildarchtranslate: pentium3: i686
|
|
buildarchtranslate: i686: i686
|
|
buildarchtranslate: i586: i586
|
|
|
|
buildarchtranslate: armv7hl: armv7hl
|
|
buildarchtranslate: armv7hnl: armv7hl
|