mirror of
https://git.yoctoproject.org/poky
synced 2026-05-31 00:39:46 +00:00
8e6a742220
This will help in meta-linaro where it will be able to utilize maximum recipes from OE-Core and thereby keep close compatibility with OE-Core gcc recipes (From OE-Core rev: 3c9f7eb2e2d70869a71a584eb1ba670b50a88379) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
27 lines
837 B
BlitzBasic
27 lines
837 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 = "/lib/"
|
|
SYSTEMLIBS1 = "/usr/lib/"
|
|
|
|
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}"
|