[oe-commits] [meta-openembedded] 27/129: gpsd: don't compile with gold

git at git.openembedded.org git at git.openembedded.org
Mon Sep 11 16:10:36 UTC 2017


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

martin_jansa pushed a commit to branch pyro-next
in repository meta-openembedded.

commit a50d969e897b87f37e9d4955c6d4c504150ab3f8
Author: Max Krummenacher <max.oss.09 at gmail.com>
AuthorDate: Sun May 28 13:10:39 2017 +0200

    gpsd: don't compile with gold
    
    When linking with gold libgps and libgpsd error out with:
     | ./libgpsd.so: error: undefined reference to 'atan2'
     | ./libgpsd.so: error: undefined reference to 'pow'
     | ./libgpsd.so: error: undefined reference to 'sqrt'
     | ./libgpsd.so: error: undefined reference to 'sin'
     | ./libgpsd.so: error: undefined reference to 'cos'
     | collect2: error: ld returned 1 exit status
    
    Using the bfd linker fixes the issue.
    
    Signed-off-by: Max Krummenacher <max.krummenacher at toradex.com>
    Signed-off-by: Martin Jansa <Martin.Jansa at gmail.com>
    Signed-off-by: Armin Kuster <akuster808 at gmail.com>
---
 meta-oe/recipes-navigation/gpsd/gpsd_3.14.bb | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/meta-oe/recipes-navigation/gpsd/gpsd_3.14.bb b/meta-oe/recipes-navigation/gpsd/gpsd_3.14.bb
index 4d00fea..fb02f95 100644
--- a/meta-oe/recipes-navigation/gpsd/gpsd_3.14.bb
+++ b/meta-oe/recipes-navigation/gpsd/gpsd_3.14.bb
@@ -36,6 +36,8 @@ SYSTEMD_OESCONS = "${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'f
 export STAGING_INCDIR
 export STAGING_LIBDIR
 
+LDFLAGS_append = "${@bb.utils.contains('DISTRO_FEATURES', 'ld-is-gold', ' -fuse-ld=bfd ', '', d)}"
+
 PACKAGECONFIG ??= "${@bb.utils.contains('DISTRO_FEATURES', 'bluetooth', 'bluez', '', d)}"
 PACKAGECONFIG[bluez] = "bluez='true',bluez='false',${BLUEZ}"
 PACKAGECONFIG[qt] = "qt='yes',qt='no',qt4-x11-free"

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


More information about the Openembedded-commits mailing list