blob: 5ecbdb6ed8c041afcd4011f7179bf2b975ba4630 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
require eglibc_${PV}.bb
do_install () {
:
}
# gcc uses -Werror which break on a "you have no thumb interwork" _warning_
do_configure_prepend() {
find ${S} -name "configure" | xargs touch
sed -i s:-Werror:: ${S}/configure
}
PACKAGES = ""
PACKAGES_DYNAMIC = ""
PROVIDES = "virtual/${TARGET_PREFIX}libc-for-gcc"
DEPENDS = "virtual/${TARGET_PREFIX}gcc-initial linux-libc-headers"
GLIBC_ADDONS = "nptl,ports"
GLIBC_EXTRA_OECONF = ""
|