mirror of
https://git.yoctoproject.org/poky
synced 2026-04-27 21:32:13 +02:00
A new yearly snapshot was taken on January 2nd of 2020, this bumps newlib to 3.2.0. - Mentor Graphics added tcl license (amdgcn-* targets) - BSD-Clause-2 was added as well by Dinux (pru-* targets) (From OE-Core rev: e2d0e36234ba928d0cbcc98d8358b94d8d44412e) Signed-off-by: Alejandro Enedino Hernandez Samaniego <alejandro@enedino.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
21 lines
571 B
BlitzBasic
21 lines
571 B
BlitzBasic
require newlib.inc
|
|
|
|
PROVIDES += "virtual/libc virtual/libiconv virtual/libintl"
|
|
|
|
do_configure() {
|
|
export CC_FOR_TARGET="${CC}"
|
|
${S}/configure ${EXTRA_OECONF}
|
|
}
|
|
|
|
do_install_append() {
|
|
# Move include files and libs to default directories so they can be picked up later
|
|
mv -v ${D}${prefix}/${TARGET_SYS}/lib ${D}${libdir}
|
|
mv -v ${D}${prefix}/${TARGET_SYS}/include ${D}${includedir}
|
|
|
|
# Remove original directory
|
|
rmdir ${D}${prefix}/${TARGET_SYS}
|
|
}
|
|
|
|
# No rpm package is actually created but -dev depends on it, avoid dnf error
|
|
RDEPENDS_${PN}-dev_libc-newlib = ""
|