mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-12-14 14:25:53 +01:00
libunix-statgrab: Use compiler driver for linking as well
the build system tries to deduce the compiler and its friends and fails because OE passes LDFLAGS assuming that linker will be invoked via compiler driver ( gcc or clang ) therefore prefixes linker options with -Wl, but libunix-statgrab build system enquires LD variable for linker and uses LDFLAGS with it, which causes linker to fail since ld does not recognise -Wl, etc. Therefore using CCLD for linker is right choice here Fixes Checking for cc... i686-yoe-linux-ld: unrecognized option '-Wl,-O1' i686-yoe-linux-ld: use the --help option for usage information Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
parent
c2a611d45a
commit
67df2ce4c9
|
|
@ -33,6 +33,8 @@ SRC_URI[sha256sum] = "16a29f7acaeec081bf0e7303ba5ee24fda1d21a1104669b837745f3ea6
|
|||
|
||||
S = "${WORKDIR}/Unix-Statgrab-${PV}"
|
||||
|
||||
export LD = "${CCLD}"
|
||||
|
||||
inherit cpan pkgconfig ptest-perl
|
||||
|
||||
BBCLASSEXTEND = "native"
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user