mirror of
git://git.yoctoproject.org/poky
synced 2026-09-26 10:25:23 +00:00
This fixes the issue where gcc invokes the linker with an incorrect -L library location and gives up because it can't find libraries. It was looking in a /lib folder instead of /lib64 (From OE-Core rev: 1b428f0151a5b86332b501871bf4a925b43580a5) Signed-off-by: Matthew McClintock <msm@freescale.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
27 lines
862 B
BlitzBasic
27 lines
862 B
BlitzBasic
inherit cross-canadian
|
|
|
|
require recipes-devtools/gcc/gcc-${PV}.inc
|
|
require gcc-cross-canadian.inc
|
|
require gcc-configure-sdk.inc
|
|
require gcc-package-sdk.inc
|
|
|
|
DEPENDS += "gmp-nativesdk mpfr-nativesdk libmpc-nativesdk elfutils-nativesdk"
|
|
RDEPENDS_${PN} += "mpfr-nativesdk libmpc-nativesdk elfutils-nativesdk"
|
|
|
|
SYSTEMHEADERS = "/usr/include"
|
|
SYSTEMLIBS = "${target_base_libdir}/"
|
|
SYSTEMLIBS1 = "${target_libdir}/"
|
|
|
|
EXTRA_OECONF += "--disable-libunwind-exceptions --disable-libssp \
|
|
--disable-libgomp --disable-libmudflap \
|
|
--with-mpfr=${STAGING_DIR_HOST}${layout_exec_prefix} \
|
|
--with-mpc=${STAGING_DIR_HOST}${layout_exec_prefix}"
|
|
|
|
# to find libmpfr
|
|
# export LD_LIBRARY_PATH = "{STAGING_DIR_HOST}${layout_exec_prefix}"
|
|
|
|
PARALLEL_MAKE = ""
|
|
|
|
# gcc 4.7 needs -isystem
|
|
export ARCH_FLAGS_FOR_TARGET = "--sysroot=${STAGING_DIR_TARGET} -isystem=${target_includedir}"
|