mirror of
https://github.com/thead-yocto-mirror/meta-openembedded
synced 2026-09-03 20:54:42 +02:00
This needs further investigation, but for now we can get the tested sources into the poky gcc harness Signed-off-by: Koen Kooi <k-kooi@ti.com>
11 lines
343 B
PHP
11 lines
343 B
PHP
# Cut-down gcc for kernel builds
|
|
# Only installs ${TARGET_PREFIX}gcc-${PV}, not ${TARGET_PREFIX}gcc.
|
|
|
|
PROVIDES = "virtual/${TARGET_PREFIX}gcc-${PV}"
|
|
|
|
do_install () {
|
|
cd gcc
|
|
oe_runmake 'DESTDIR=${D}' install-common install-headers install-libgcc
|
|
install -m 0755 xgcc ${D}${STAGING_DIR_NATIVE}${prefix_native}/bin/${TARGET_PREFIX}gcc-${PV}
|
|
}
|