diff options
author | Koen Kooi <koen@openembedded.org> | 2007-09-13 10:32:14 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2007-09-13 10:32:14 +0000 |
commit | 8369bb1a5f2131250a499b22078505c63234b5f6 (patch) | |
tree | 5a643f7d339693cbe2ae9733f81d4ab9018dd4c5 /packages | |
parent | e25324a877e7cc1709b2d959bad89534cbe0ef54 (diff) |
elf2flt: add wrapper for uclinux binaries needing funky linkers
Diffstat (limited to 'packages')
-rw-r--r-- | packages/uclibc/elf2flt_svn.bb | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/packages/uclibc/elf2flt_svn.bb b/packages/uclibc/elf2flt_svn.bb new file mode 100644 index 0000000000..ef142baf06 --- /dev/null +++ b/packages/uclibc/elf2flt_svn.bb @@ -0,0 +1,15 @@ +DESCRIPTION = "Elf2flt is a wrapper around the linker for uclinux platforms" +DEPENDS = "binutils-cross" + +PV = "0.0+svnr${SRCREV}" + +inherit autotools cross + +SRC_URI = "svn://sources.blackfin.uclinux.org/toolchain/trunk;module=${PN}" + +S = "${WORKDIR}/${PN}" + +EXTRA_OECONF = " --with-libbfd=${CROSS_DIR}/${TARGET_SYS}/lib/libbfd.a \ + --with-libiberty=${CROSS_DIR}/${TARGET_SYS}/lib/libiberty.a \ + --with-bfd-include-dir=${CROSS_DIR}/${TARGET_SYS}/include \ + " |