summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/tcf-agent
diff options
context:
space:
mode:
authorGernot Hillier <gernot.hillier@siemens.com>2017-04-26 12:57:44 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-05-11 16:59:19 +0100
commit36c71efe92c11a440f5ef70a8c4e04ec14177cef (patch)
tree00264359eb5818919aa8c6055ccedcc43556335d /meta/recipes-devtools/tcf-agent
parent10fdf0e53507e5b14346638e2606ee1a0e868350 (diff)
downloadpoky-36c71efe92c11a440f5ef70a8c4e04ec14177cef.tar.gz
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>
Diffstat (limited to 'meta/recipes-devtools/tcf-agent')
-rw-r--r--meta/recipes-devtools/tcf-agent/tcf-agent_git.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/tcf-agent/tcf-agent_git.bb b/meta/recipes-devtools/tcf-agent/tcf-agent_git.bb
index e5e41f148e..cd0081ac16 100644
--- a/meta/recipes-devtools/tcf-agent/tcf-agent_git.bb
+++ b/meta/recipes-devtools/tcf-agent/tcf-agent_git.bb
@@ -30,7 +30,7 @@ INITSCRIPT_NAME = "tcf-agent"
30INITSCRIPT_PARAMS = "start 99 3 5 . stop 20 0 1 2 6 ." 30INITSCRIPT_PARAMS = "start 99 3 5 . stop 20 0 1 2 6 ."
31 31
32# mangling needed for make 32# mangling needed for make
33MAKE_ARCH = "`echo ${TARGET_ARCH} | sed s,i.86,i686,`" 33MAKE_ARCH = "`echo ${TARGET_ARCH} | sed s,i.86,i686, | sed s,aarch64,a64,`"
34MAKE_OS = "`echo ${TARGET_OS} | sed s,^linux.*,GNU/Linux,`" 34MAKE_OS = "`echo ${TARGET_OS} | sed s,^linux.*,GNU/Linux,`"
35 35
36EXTRA_OEMAKE = "MACHINE=${MAKE_ARCH} OPSYS=${MAKE_OS} 'CC=${CC}' 'AR=${AR}'" 36EXTRA_OEMAKE = "MACHINE=${MAKE_ARCH} OPSYS=${MAKE_OS} 'CC=${CC}' 'AR=${AR}'"