mirror of
git://git.yoctoproject.org/meta-dpdk.git
synced 2025-07-05 05:04:45 +02:00
dpdk: Fix the self reference error when building with unsupported arch
Fix the following parse error when building with unsupported arch, such as arm: bb.data_smart.ExpansionError: Failure expanding variable RTE_TARGET, expression was ${RTE_TARGET} which triggered exception Exception: variable RTE_TARGET references itself! Signed-off-by: Kevin Hao <kexin.hao@windriver.com> Signed-off-by: California Sullivan <california.l.sullivan@intel.com>
This commit is contained in:
parent
8722a569c3
commit
002366a2af
|
@ -58,10 +58,10 @@ export ICP_LAC_API_DIR = "${STAGING_DIR_TARGET}${includedir}/lac"
|
|||
export EXAMPLES_BUILD_DIR = "${RTE_TARGET}"
|
||||
export ARCHDIR = "generic"
|
||||
|
||||
RTE_TARGET_x86-64 = "x86_64-native-linuxapp-gcc"
|
||||
RTE_TARGET_i686 = "i686-native-linuxapp-gcc"
|
||||
RTE_TARGET_aarch64 = "arm64-${DPDK_TARGET_MACH}-linuxapp-gcc"
|
||||
export RTE_TARGET="${RTE_TARGET}"
|
||||
DPDK_RTE_TARGET_x86-64 = "x86_64-native-linuxapp-gcc"
|
||||
DPDK_RTE_TARGET_i686 = "i686-native-linuxapp-gcc"
|
||||
DPDK_RTE_TARGET_aarch64 = "arm64-${DPDK_TARGET_MACH}-linuxapp-gcc"
|
||||
export RTE_TARGET = "${DPDK_RTE_TARGET}"
|
||||
|
||||
# The list of intel Comms platforms and their target machine
|
||||
# process mapping. The supported target machine is listed under
|
||||
|
|
Loading…
Reference in New Issue
Block a user