diff options
author | Ting Liu <b28495@freescale.com> | 2013-09-11 11:11:15 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-09-11 11:06:58 +0100 |
commit | 4c92281f0349eb6ccd7dd7c3e358ba7e7936fb6c (patch) | |
tree | b11eed7a071898e9c2b5d2503b844d4e0641c572 /meta/recipes-support/libcroco | |
parent | 4b2d9acda80ee618241a924555178a750cbd6e82 (diff) | |
download | poky-4c92281f0349eb6ccd7dd7c3e358ba7e7936fb6c.tar.gz |
libcroco: disable Bsymbolic if it is not supported on some hosts
When trying to build on my Centos 5.5 machine, got below error:
| checking for gtkdoc-mkpdf... no
| checking whether to build gtk-doc documentation... no
| checking for CROCO... yes
| checking if gcc supports "-Wl,-Bsymbolic-functions" flag...
| configure: error: -Bsymbolic requested but not supported by ld. Use --disable-Bsymbolic to disable
| Configure failed. The contents of all config.log files follows to aid debugging
|
| configure: exit 1
| ERROR: oe_runconf failed
Set --enable-Bsymbolic=auto to disable it when it is not suppported.
(From OE-Core rev: e7c691b33573b3309752d6eb397486c2c8620adb)
Signed-off-by: Ting Liu <b28495@freescale.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/libcroco')
-rw-r--r-- | meta/recipes-support/libcroco/libcroco_0.6.8.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-support/libcroco/libcroco_0.6.8.bb b/meta/recipes-support/libcroco/libcroco_0.6.8.bb index 3c5dc9a183..d175c4639d 100644 --- a/meta/recipes-support/libcroco/libcroco_0.6.8.bb +++ b/meta/recipes-support/libcroco/libcroco_0.6.8.bb | |||
@@ -10,7 +10,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=55ca817ccb7d5b5b66355690e9abc605 \ | |||
10 | SECTION = "x11/utils" | 10 | SECTION = "x11/utils" |
11 | DEPENDS = "glib-2.0 libxml2 zlib" | 11 | DEPENDS = "glib-2.0 libxml2 zlib" |
12 | BBCLASSEXTEND = "native" | 12 | BBCLASSEXTEND = "native" |
13 | 13 | EXTRA_OECONF += "--enable-Bsymbolic=auto" | |
14 | PR = "r1" | 14 | PR = "r1" |
15 | 15 | ||
16 | inherit autotools pkgconfig gnomebase | 16 | inherit autotools pkgconfig gnomebase |