mirror of
https://git.yoctoproject.org/poky
synced 2026-03-11 17:59:39 +01:00
The overrides virtclass-native and virtclass-nativesdk are deprecated, which should be replaced by class-native and class-nativesdk. [YOCTO #3297] (From OE-Core rev: 5193485a42dfb3396d0f12aaa7732c5db29d7338) Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
22 lines
781 B
BlitzBasic
22 lines
781 B
BlitzBasic
require uclibc.inc
|
|
require uclibc-package.inc
|
|
require uclibc-git.inc
|
|
|
|
STAGINGCC = "gcc-cross-initial"
|
|
STAGINGCC_class-nativesdk = "gcc-crosssdk-initial"
|
|
|
|
PROVIDES += "virtual/libc virtual/${TARGET_PREFIX}libc-for-gcc"
|
|
|
|
DEPENDS = "virtual/${TARGET_PREFIX}binutils \
|
|
virtual/${TARGET_PREFIX}gcc-initial \
|
|
virtual/${TARGET_PREFIX}libc-initial \
|
|
linux-libc-headers ncurses-native"
|
|
|
|
RDEPENDS_${PN}-dev = "linux-libc-headers-dev"
|
|
RPROVIDES_${PN}-dev += "libc-dev virtual-libc-dev"
|
|
# uclibc does not really have libsegfault but then using the one from glibc is also not
|
|
# going to work. So we pretend that we have it to make bitbake not pull other recipes
|
|
# to satisfy this dependency for the images/tasks
|
|
|
|
RPROVIDES_${PN} += "libsegfault rtld(GNU_HASH)"
|