summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorGuojian Zhou <guojian.zhou@windriver.com>2017-08-10 06:31:09 -0400
committerSaul Wold <sgw@linux.intel.com>2017-08-10 13:14:26 -0700
commit634986e2dad6fac19463f15de4dcd166d98ac305 (patch)
tree4fae4701e6fbbe66823b340583aa080945f16608 /common
parente87c179dea4a98b0e9836d3501a8b430a764624b (diff)
downloadmeta-intel-634986e2dad6fac19463f15de4dcd166d98ac305.tar.gz
dpdk: Fix build error on the core2-64
Use the "m64" to parse the flag of x86-64 toolchains. Signed-off-by: Guojian Zhou <guojian.zhou@windriver.com> Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'common')
-rw-r--r--common/recipes-extended/dpdk/dpdk.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/recipes-extended/dpdk/dpdk.inc b/common/recipes-extended/dpdk/dpdk.inc
index 483c7a5e..fd0e1c95 100644
--- a/common/recipes-extended/dpdk/dpdk.inc
+++ b/common/recipes-extended/dpdk/dpdk.inc
@@ -38,7 +38,7 @@ inherit module
38 38
39export MODULE_DIR="/lib/modules/${KERNEL_VERSION}/kernel/drivers/net" 39export MODULE_DIR="/lib/modules/${KERNEL_VERSION}/kernel/drivers/net"
40export RTE_SDK = "${S}" 40export RTE_SDK = "${S}"
41export RTE_TARGET="${@bb.utils.contains("TUNE_FEATURES", "corei7", "x86_64-native-linuxapp-gcc", "i686-native-linuxapp-gcc", d)}" 41export RTE_TARGET="${@bb.utils.contains("TUNE_FEATURES", "m64", "x86_64-native-linuxapp-gcc", "i686-native-linuxapp-gcc", d)}"
42 42
43export ICP_ROOT = "${PKG_CONFIG_SYSROOT_DIR}/usr/include" 43export ICP_ROOT = "${PKG_CONFIG_SYSROOT_DIR}/usr/include"
44export ICP_LIB_ROOT= "${PKG_CONFIG_SYSROOT_DIR}/usr/lib" 44export ICP_LIB_ROOT= "${PKG_CONFIG_SYSROOT_DIR}/usr/lib"