xtools: fix some build issues
$DTC wasn't exported, causing a build failure if it wasn't defined outside the build system. The provided ct-ng configuration files define CT_TARGET_VENDOR="zephyr". Fix CROSS_COMPILE definition so that the compiler can be found. Change-Id: I4e25c775e1f02a435704b6a874adb221c677b13a Signed-off-by: Andrew Boie <andrew.p.boie@intel.com>
This commit is contained in:
parent
faccf55dd3
commit
6cdc8e90a1
1 changed files with 2 additions and 2 deletions
|
@ -10,7 +10,7 @@ endif
|
||||||
else
|
else
|
||||||
|
|
||||||
CROSS_COMPILE_TARGET_arm = arm-none-eabi
|
CROSS_COMPILE_TARGET_arm = arm-none-eabi
|
||||||
CROSS_COMPILE_TARGET_x86 = i586-pc-elf
|
CROSS_COMPILE_TARGET_x86 = i586-zephyr-elf
|
||||||
|
|
||||||
CROSS_COMPILE_TARGET = ${CROSS_COMPILE_TARGET_${ARCH}}
|
CROSS_COMPILE_TARGET = ${CROSS_COMPILE_TARGET_${ARCH}}
|
||||||
CROSS_COMPILE_ROOT = ${XTOOLS_TOOLCHAIN_PATH}/${CROSS_COMPILE_TARGET}
|
CROSS_COMPILE_ROOT = ${XTOOLS_TOOLCHAIN_PATH}/${CROSS_COMPILE_TARGET}
|
||||||
|
@ -26,4 +26,4 @@ LIB_INCLUDE_DIR += -L ${CROSS_COMPILE_ROOT}/lib/gcc/${CROSS_COMPILE_TARGET}/${CR
|
||||||
|
|
||||||
DTC ?= dtc
|
DTC ?= dtc
|
||||||
|
|
||||||
export CROSS_COMPILE TOOLCHAIN_LIBS LIB_INCLUDE_DIR TOOLCHAIN_CFLAGS
|
export DTC CROSS_COMPILE TOOLCHAIN_LIBS LIB_INCLUDE_DIR TOOLCHAIN_CFLAGS
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue