config: remove ARM NEON option
authorJan Viktorin <viktorin@rehivetech.com>
Sat, 19 Mar 2016 19:58:02 +0000 (20:58 +0100)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Thu, 24 Mar 2016 16:46:58 +0000 (17:46 +0100)
ARMv7 machines have usually the NEON available.
Customization of the -mfpu=neon must be done by hand or by defining
another machine rte.vars.mk.
So, the CONFIG_RTE_ARCH_ARM_NEON is useless (and confusing).

Signed-off-by: Jan Viktorin <viktorin@rehivetech.com>
config/defconfig_arm-armv7a-linuxapp-gcc
config/defconfig_arm64-armv8a-linuxapp-gcc
mk/machine/armv7a/rte.vars.mk

index b007ca74d8e83c7fd453d51e683c23c523caf13f..96c3343b3843e0444870d4db1f0043786e73799b 100644 (file)
@@ -36,7 +36,6 @@ CONFIG_RTE_ARCH="arm"
 CONFIG_RTE_ARCH_ARM=y
 CONFIG_RTE_ARCH_ARMv7=y
 CONFIG_RTE_ARCH_ARM_TUNE="cortex-a9"
-CONFIG_RTE_ARCH_ARM_NEON=y
 
 CONFIG_RTE_FORCE_INTRINSICS=y
 CONFIG_RTE_ARCH_STRICT_ALIGN=y
index b0b17cff27758f1b734a9286bbd23830c9bf0cce..9abeca4c0f54485ec63906e40d7543e6822742fb 100644 (file)
@@ -36,7 +36,6 @@ CONFIG_RTE_MACHINE="armv8a"
 CONFIG_RTE_ARCH="arm64"
 CONFIG_RTE_ARCH_ARM64=y
 CONFIG_RTE_ARCH_64=y
-CONFIG_RTE_ARCH_ARM_NEON=y
 
 CONFIG_RTE_FORCE_INTRINSICS=y
 
index 48d3979930b8bc73efe9ad0a5ab62e328869868b..abdb15e580373851ae70d423cac4664f75b635ed 100644 (file)
@@ -62,6 +62,4 @@ ifdef CONFIG_RTE_ARCH_ARM_TUNE
 MACHINE_CFLAGS += -mtune=$(CONFIG_RTE_ARCH_ARM_TUNE)
 endif
 
-ifeq ($(CONFIG_RTE_ARCH_ARM_NEON),y)
 MACHINE_CFLAGS += -mfpu=neon
-endif