Change microarchitecture from Zen 1 to Zen 3 due to CPU architecture change. Sort toolchain commands A-Z.

This commit is contained in:
inference 2022-09-16 18:54:57 +01:00
parent e7bf56fc61
commit 4914239ca4

View File

@ -4,17 +4,17 @@
# Toolchain.
AR="ar"
CC="gcc"
CXX="g++"
AR="ar"
NM="nm"
RANLIB="ranlib"
# Flags.
## Compiler flags.
CFLAGS="-march=znver1 -O2 -pipe -U__gnu_linux__"
CXXFLAGS="-march=znver1 -O2 -pipe"
CFLAGS="-march=znver3 -O2 -pipe -U__gnu_linux__"
CXXFLAGS="-march=znver3 -O2 -pipe"
## Linker flags.
LDFLAGS="-Wl,-O2"