From c16261a5b0022f0791033deb81544f3abac0f984 Mon Sep 17 00:00:00 2001 From: smp79 Date: Fri, 19 Mar 2021 20:34:52 +0300 Subject: [PATCH] Remove redundant ARCH specific *FLAGS --- config/arch.x86_64 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/arch.x86_64 b/config/arch.x86_64 index a7d1b39587..8f51a91f1f 100644 --- a/config/arch.x86_64 +++ b/config/arch.x86_64 @@ -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"