mirror of
https://git.yoctoproject.org/poky
synced 2026-03-31 02:02:25 +02:00
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@3585 311d38ba-8fff-0310-9ca6-ca027cbcb966
22 lines
576 B
PHP
22 lines
576 B
PHP
inherit sdk
|
|
DEPENDS += "flex-native bison-native"
|
|
FILESDIR = "${@os.path.dirname(bb.data.getVar('FILE',d,1))}/binutils-${PV}"
|
|
EXTRA_OECONF = "--with-sysroot=${prefix}/${TARGET_SYS} \
|
|
--program-prefix=${TARGET_PREFIX}"
|
|
|
|
PACKAGES =+ "${PN}-dbg"
|
|
FILES_${PN}-dbg += "${prefix}/${TARGET_SYS}/bin/.debug"
|
|
|
|
do_stage() {
|
|
:
|
|
}
|
|
|
|
do_install () {
|
|
autotools_do_install
|
|
|
|
# Install the libiberty header
|
|
install -d ${D}${includedir}
|
|
install -m 644 ${S}/include/ansidecl.h ${D}${includedir}
|
|
install -m 644 ${S}/include/libiberty.h ${D}${includedir}
|
|
}
|