[oe-commits] [meta-openembedded] 02/04: python-lxml: replace -Og with -O for mips64-32

git at git.openembedded.org git at git.openembedded.org
Fri Jun 21 13:22:37 UTC 2019


This is an automated email from the git hooks/post-receive script.

khem pushed a commit to branch master-next
in repository meta-openembedded.

commit b3ae42d56e9a10b0866dfdc21a2aa6be8db8bf05
Author: Mingli Yu <Mingli.Yu at windriver.com>
AuthorDate: Wed Jun 19 22:50:11 2019 -0700

    python-lxml: replace -Og with -O for mips64-32
    
    With below logic in local.conf:
    MACHINE ??= "qemumips64"
    MULTILIB_GLOBAL_VARIANTS_append = " libn32"
    MULTILIBS ?= "multilib:lib32 multilib:libn32"
    DEFAULTTUNE_virtclass-multilib-lib32 ?= "mips"
    DEFAULTTUNE_virtclass-multilib-libn32 ?= "mips64-n32"
    require conf/multilib.conf
    DEBUG_BUILD = "1"
    $ bitbake lib32-python-lxml
    [snip]
    | {standard input}: Assembler messages:
    | {standard input}:1488805: Error: branch out of range
    | Compile failed: command 'mips-pokymllib32-linux-gcc' failed with exit status 1
    | creating tmp
    | cc -I/yocto/builds//tmp/work/mips-pokymllib32-linux/lib32-python-lxml/4.3.4-r0/lib32-recipe-sysroot/usr/include/libxml2 -I/usr/include/libxml2 -c /tmp/xmlXPathInitPZiWuM.c -o tmp/xmlXPathInitPZiWuM.o
    | unable to execute 'cc': No such file or directory
    [snip]
    
    When DEBUG_BUILD enabled, -Og pass to compiler,
    replace -Og with -O to fix the above compile error.
    
    Signed-off-by: Mingli Yu <Mingli.Yu at windriver.com>
    Signed-off-by: Khem Raj <raj.khem at gmail.com>
---
 meta-python/recipes-devtools/python/python-lxml.inc | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/meta-python/recipes-devtools/python/python-lxml.inc b/meta-python/recipes-devtools/python/python-lxml.inc
index d67c178..dd73a41 100644
--- a/meta-python/recipes-devtools/python/python-lxml.inc
+++ b/meta-python/recipes-devtools/python/python-lxml.inc
@@ -33,6 +33,18 @@ DISTUTILS_INSTALL_ARGS += " \
 
 inherit pypi
 
+# {standard input}: Assembler messages:
+# {standard input}:1488805: Error: branch out of range
+DEBUG_OPTIMIZATION_remove_mips = " -Og"
+DEBUG_OPTIMIZATION_append_mips = " -O"
+BUILD_OPTIMIZATION_remove_mips = " -Og"
+BUILD_OPTIMIZATION_append_mips = " -O"
+
+DEBUG_OPTIMIZATION_remove_mipsel = " -Og"
+DEBUG_OPTIMIZATION_append_mipsel = " -O"
+BUILD_OPTIMIZATION_remove_mipsel = " -Og"
+BUILD_OPTIMIZATION_append_mipsel = " -O"
+
 do_configure_prepend() {
     sed -i -e 's/--version/--modversion/' ${B}/setupinfo.py
 }

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


More information about the Openembedded-commits mailing list