mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-12-16 07:15:43 +01: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}
|
|
}
|