[oe-commits] [openembedded-core] 17/21: openjade-native: work around bug exposed by GCC 6

git at git.openembedded.org git at git.openembedded.org
Wed Jul 27 07:34:40 UTC 2016


rpurdie pushed a commit to branch krogoth
in repository openembedded-core.

commit 901c179680629f49ac3c05c336b2fe752a87ea2b
Author: Daniel McGregor <daniel.mcgregor at vecima.com>
AuthorDate: Thu Jul 14 18:49:38 2016 -0700

    openjade-native: work around bug exposed by GCC 6
    
    Simply turn off the optimzation that is causing this breakage. I had
    originally used -fno-lifetime-dse, but -fno-tree-dse works at least
    going back as far as gcc 4.8.
    
    This isn't a real fix, but it allows openjade to work enough to complete
    a build.
    
    (From OE-Core rev: 39e7dd90878325158c143dfec8234d563b841b86)
    
    Signed-off-by: Daniel McGregor <daniel.mcgregor at vecima.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
    Signed-off-by: Armin Kuster <akuster808 at gmail.com>
---
 meta/recipes-devtools/openjade/openjade-native_1.3.2.bb | 1 +
 1 file changed, 1 insertion(+)

diff --git a/meta/recipes-devtools/openjade/openjade-native_1.3.2.bb b/meta/recipes-devtools/openjade/openjade-native_1.3.2.bb
index bc25008..afcb8ca 100644
--- a/meta/recipes-devtools/openjade/openjade-native_1.3.2.bb
+++ b/meta/recipes-devtools/openjade/openjade-native_1.3.2.bb
@@ -44,6 +44,7 @@ CONFIGUREOPTS := "${@d.getVar('CONFIGUREOPTS', True).replace('--datadir=${datadi
 oe_runconf[vardepsexclude] += "CONFIGUREOPTS"
 
 CFLAGS =+ "-I${S}/include"
+CXXFLAGS += "-fno-tree-dse"
 
 SSTATEPOSTINSTFUNCS += "openjade_sstate_postinst"
 SYSROOT_PREPROCESS_FUNCS += "openjade_sysroot_preprocess"

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list