diff options
author | Joe Slater <jslater@windriver.com> | 2017-06-05 10:53:08 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-06-06 19:49:57 +0100 |
commit | f8e63dff3eb807b07bd71f0e31f6e0cf18ecdb0c (patch) | |
tree | b93e50e5bbc4120714d7cec02f564949bceff50d | |
parent | be117d6ea79882d10cce4c061385832e26d23bff (diff) | |
download | openembedded-core-f8e63dff3eb807b07bd71f0e31f6e0cf18ecdb0c.tar.gz openembedded-core-f8e63dff3eb807b07bd71f0e31f6e0cf18ecdb0c.tar.bz2 openembedded-core-f8e63dff3eb807b07bd71f0e31f6e0cf18ecdb0c.zip |
tcf-agent: correct CFLAGS
Modify CFLAGS for several cases which will not compile otherwise.
Do not use the form CFLAGS_x_append because it will replace, not
append to CFLAGS for override x.
Signed-off-by: Joe Slater <jslater@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
-rw-r--r-- | meta/recipes-devtools/tcf-agent/tcf-agent_git.bb | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/meta/recipes-devtools/tcf-agent/tcf-agent_git.bb b/meta/recipes-devtools/tcf-agent/tcf-agent_git.bb index 1dad825fda..6d6ba76ba8 100644 --- a/meta/recipes-devtools/tcf-agent/tcf-agent_git.bb +++ b/meta/recipes-devtools/tcf-agent/tcf-agent_git.bb @@ -35,17 +35,18 @@ MAKE_OS = "`echo ${TARGET_OS} | sed s,^linux.*,GNU/Linux,`" EXTRA_OEMAKE = "MACHINE=${MAKE_ARCH} OPSYS=${MAKE_OS} 'CC=${CC}' 'AR=${AR}'" -# These features don't compile on mips and libc-musl -CFLAGS_mips_append = "-DSERVICE_RunControl=0 -DSERVICE_Breakpoints=0 \ - -DSERVICE_Memory=0 -DSERVICE_Registers=0 -DSERVICE_MemoryMap=0 \ - -DSERVICE_StackTrace=0 -DSERVICE_Expressions=0" -CFLAGS_mips64_append = "-DSERVICE_RunControl=0 -DSERVICE_Breakpoints=0 \ - -DSERVICE_Memory=0 -DSERVICE_Registers=0 -DSERVICE_MemoryMap=0 \ - -DSERVICE_StackTrace=0 -DSERVICE_Expressions=0" -CFLAGS_append_libc-musl = "-DSERVICE_RunControl=0 -DSERVICE_Breakpoints=0 \ +LCL_STOP_SERVICES = "-DSERVICE_RunControl=0 -DSERVICE_Breakpoints=0 \ -DSERVICE_Memory=0 -DSERVICE_Registers=0 -DSERVICE_MemoryMap=0 \ -DSERVICE_StackTrace=0 -DSERVICE_Expressions=0" + +# These features don't compile for several cases. +# +CFLAGS_append_mips = " ${LCL_STOP_SERVICES}" +CFLAGS_append_mips64 = " ${LCL_STOP_SERVICES}" +CFLAGS_append_libc-musl = " ${LCL_STOP_SERVICES}" +CFLAGS_append_powerpc64 = " ${LCL_STOP_SERVICES}" + do_install() { oe_runmake install INSTALLROOT=${D} install -d ${D}${sysconfdir}/init.d/ |