From: Keith Wiles Date: Fri, 4 Mar 2016 17:03:26 +0000 (-0600) Subject: config: fix missing 64-bit flag on FreeBSD X-Git-Tag: spdx-start~7557 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=e45ef10c34540c3f543689d833db8bb7296d9e85;p=dpdk.git config: fix missing 64-bit flag on FreeBSD Until now, the generic 64-bit flag was used only for ARM or Linux, and was not defined for BSD environment. Fixes: d05e7115f466 ("mem: support layout of IBM Power") Signed-off-by: Keith Wiles --- diff --git a/config/defconfig_x86_64-native-bsdapp-clang b/config/defconfig_x86_64-native-bsdapp-clang index d2baf2c4f7..8b870b328f 100644 --- a/config/defconfig_x86_64-native-bsdapp-clang +++ b/config/defconfig_x86_64-native-bsdapp-clang @@ -37,6 +37,7 @@ CONFIG_RTE_MACHINE="native" CONFIG_RTE_ARCH="x86_64" CONFIG_RTE_ARCH_X86_64=y CONFIG_RTE_ARCH_X86=y +CONFIG_RTE_ARCH_64=y CONFIG_RTE_TOOLCHAIN="clang" CONFIG_RTE_TOOLCHAIN_CLANG=y diff --git a/config/defconfig_x86_64-native-bsdapp-gcc b/config/defconfig_x86_64-native-bsdapp-gcc index 5a6a4e8c98..4ea4433be0 100644 --- a/config/defconfig_x86_64-native-bsdapp-gcc +++ b/config/defconfig_x86_64-native-bsdapp-gcc @@ -37,6 +37,7 @@ CONFIG_RTE_MACHINE="native" CONFIG_RTE_ARCH="x86_64" CONFIG_RTE_ARCH_X86_64=y CONFIG_RTE_ARCH_X86=y +CONFIG_RTE_ARCH_64=y CONFIG_RTE_TOOLCHAIN="gcc" CONFIG_RTE_TOOLCHAIN_GCC=y