surpport seeking the recorded video
[vuplus_openembedded] / recipes / binutils / binutils-canadian-cross.inc
1 SECTION = "devel"
2 inherit canadian-cross
3 DEPENDS += "flex-native bison-native"
4 PROVIDES = "virtual/${TARGET_PREFIX}binutils"
5 PACKAGES = ""
6 EXTRA_OECONF = "--with-sysroot=${STAGING_DIR_HOST} \
7                 --program-prefix=${TARGET_PREFIX} \
8                 --enable-install-libbfd \
9                 --disable-werror"
10
11 do_stage () {
12         # ugly hack introduce to link our staging area up
13         mkdir -p ${exec_prefix}/${SDK_SYS}
14         ln -s ${STAGING_INCDIR} ${exec_prefix}/${SDK_SYS}/include
15         ln -s ${STAGING_LIBDIR} ${exec_prefix}/${SDK_SYS}/lib
16
17         oe_runmake install
18
19         # We don't really need these, so we'll remove them...
20         rm -rf ${exec_prefix}/${SDK_SYS}/lib/ldscripts
21 }
22
23 do_install () {
24         :
25 }