mirror of
https://git.yoctoproject.org/poky
synced 2026-04-18 21:32:12 +02:00
Currently gcc-runtime installs the files, but actually gcc-runtime's do_configure checks if the files are available, so before we build gcc-runtime, we should have some recipe install the files first! -- currently gcc-cross-intermediate actually does that(gcc-cross also installs the files, but it installs into the gcc-build-internal* directory), but gcc-cross-intermediate will have its own sysroot in future, after that, gcc-runtime won't build. So let us add this new target recipe and move the installation of the files from gcc-runtime into it. Signed-off-by: Dexuan Cui <dexuan.cui@intel.com>
12 lines
272 B
BlitzBasic
12 lines
272 B
BlitzBasic
PR = "r18"
|
|
|
|
require gcc-${PV}.inc
|
|
require gcc-configure-runtime.inc
|
|
require gcc-package-runtime.inc
|
|
|
|
SRC_URI_append = "file://fortran-cross-compile-hack.patch;patch=1"
|
|
|
|
ARCH_FLAGS_FOR_TARGET += "-isystem${STAGING_INCDIR}"
|
|
|
|
EXTRA_OECONF += "--disable-libunwind-exceptions"
|