mirror of
https://git.yoctoproject.org/poky
synced 2026-05-08 05:09:24 +00:00
tcf-agent: fix machine setting for arm64 build
tcf-agent uses "a64", not "aarch64", see agent/Makefile.inc. This fix allows to re-enable features like SERVICE_Breakpoints and SERVICE_ MemoryMap on arm64. (From OE-Core rev: 60c9b55d2247ca4a5074804eb42189c31d33fcf8) Signed-off-by: Gernot Hillier <gernot.hillier@siemens.com> Acked-by: Eugene Tarassov <eugene.tarassov@xilinx.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
10fdf0e535
commit
36c71efe92
@@ -30,7 +30,7 @@ INITSCRIPT_NAME = "tcf-agent"
|
||||
INITSCRIPT_PARAMS = "start 99 3 5 . stop 20 0 1 2 6 ."
|
||||
|
||||
# mangling needed for make
|
||||
MAKE_ARCH = "`echo ${TARGET_ARCH} | sed s,i.86,i686,`"
|
||||
MAKE_ARCH = "`echo ${TARGET_ARCH} | sed s,i.86,i686, | sed s,aarch64,a64,`"
|
||||
MAKE_OS = "`echo ${TARGET_OS} | sed s,^linux.*,GNU/Linux,`"
|
||||
|
||||
EXTRA_OEMAKE = "MACHINE=${MAKE_ARCH} OPSYS=${MAKE_OS} 'CC=${CC}' 'AR=${AR}'"
|
||||
|
||||
Reference in New Issue
Block a user