config/arch.x86_64: updated TARGET_CPU & TARGET_FEATURES

This commit is contained in:
SupervisedThinking
2022-06-17 20:09:44 +02:00
parent 2366034f33
commit 35d4939701
2 changed files with 29 additions and 18 deletions

View File

@@ -6,10 +6,15 @@
# generated code.
case $TARGET_ARCH in
x86_64)
# (AMD CPUs) k8 k8-sse3 opteron opteron-sse3 athlon64 athlon64-sse3
# athlon-fx amdfam10 barcelona
# (Intel CPUs) atom core2 nocona
# Valid TARGET_CPU values as defined at:
# https://gcc.gnu.org/onlinedocs/gcc/x86-Options.html
# x86-64 A generic CPU with 64-bit extensions.
#
# x86-64-v2 e.g. AMD CPU - Bulldozer - (bdver1)
# Intel CPU - Nehalem - (nehalem)
#
# x86-64-v3 e.g. AMD CPU - Bulldozer GEN4 - (bdver4)
# Intel CPU - Haswell - (haswell)
TARGET_CPU="x86-64"
;;
esac