Remove redundant ARCH specific *FLAGS

This commit is contained in:
smp79 2021-03-19 20:34:52 +03:00
parent 0166c7ca16
commit c16261a5b0

View File

@ -10,8 +10,8 @@
TARGET_KERNEL_ARCH=x86
# setup ARCH specific *FLAGS
TARGET_CFLAGS="-march=$TARGET_CPU -m64 -mmmx -msse -msse2 -mfpmath=sse"
TARGET_LDFLAGS="-march=$TARGET_CPU -m64"
TARGET_CFLAGS="-march=$TARGET_CPU"
TARGET_LDFLAGS="-march=$TARGET_CPU"
# build with SIMD support ( yes / no )
TARGET_FEATURES+=" mmx sse sse2"