Merge pull request #5255 from smp79/master

Remove redundant ARCH specific *FLAGS for x86-64
This commit is contained in:
CvH 2022-02-28 05:25:30 +01:00 committed by GitHub
commit 70c3c5d981
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -17,8 +17,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"