diff options
| author | Marcin Juszkiewicz <hrw@openedhand.com> | 2007-04-20 15:08:52 +0000 |
|---|---|---|
| committer | Marcin Juszkiewicz <hrw@openedhand.com> | 2007-04-20 15:08:52 +0000 |
| commit | 2cd9ee804b7d1745a3d2fe4b8e74cefa81245329 (patch) | |
| tree | 49398fff60f059ee4b37d60b2a03042650bf9f08 | |
| parent | 8c878bebdc8d71e04a420ccad573807e55295b2d (diff) | |
| download | poky-2cd9ee804b7d1745a3d2fe4b8e74cefa81245329.tar.gz | |
binutils-cross-sdk: added 2.17.50.0.5
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1528 311d38ba-8fff-0310-9ca6-ca027cbcb966
| -rw-r--r-- | meta/packages/binutils/binutils-cross-sdk.inc | 34 | ||||
| -rw-r--r-- | meta/packages/binutils/binutils-cross-sdk_2.17.50.0.5.bb | 20 |
2 files changed, 54 insertions, 0 deletions
diff --git a/meta/packages/binutils/binutils-cross-sdk.inc b/meta/packages/binutils/binutils-cross-sdk.inc new file mode 100644 index 0000000000..6cc0579077 --- /dev/null +++ b/meta/packages/binutils/binutils-cross-sdk.inc | |||
| @@ -0,0 +1,34 @@ | |||
| 1 | inherit sdk | ||
| 2 | DEPENDS += "flex-native bison-native" | ||
| 3 | FILESDIR = "${@os.path.dirname(bb.data.getVar('FILE',d,1))}/binutils-${PV}" | ||
| 4 | EXTRA_OECONF = "--with-sysroot=${CROSS_DIR}/${TARGET_SYS} \ | ||
| 5 | --program-prefix=${TARGET_PREFIX}" | ||
| 6 | |||
| 7 | |||
| 8 | FILES_binutils-cross-sdk-dbg = "" | ||
| 9 | do_install () { | ||
| 10 | autotools_do_install | ||
| 11 | |||
| 12 | # We don't really need these, so we'll remove them... | ||
| 13 | rm -rf ${D}${libdir}/ldscripts | ||
| 14 | |||
| 15 | # Fix the /usr/${TARGET_SYS}/bin/* links | ||
| 16 | for l in ${D}${prefix}/${TARGET_SYS}/bin/*; do | ||
| 17 | rm -f $l | ||
| 18 | ln -sf `echo ${prefix}/${TARGET_SYS}/bin \ | ||
| 19 | | tr -s / \ | ||
| 20 | | sed -e 's,^/,,' -e 's,[^/]*,..,g'`${bindir}/${TARGET_PREFIX}`basename $l` $l | ||
| 21 | done | ||
| 22 | |||
| 23 | # Install the libiberty header | ||
| 24 | install -d ${D}${includedir} | ||
| 25 | install -m 644 ${S}/include/ansidecl.h ${D}${includedir} | ||
| 26 | install -m 644 ${S}/include/libiberty.h ${D}${includedir} | ||
| 27 | |||
| 28 | cd ${D}${bindir} | ||
| 29 | |||
| 30 | # Symlinks for ease of running these on the native target | ||
| 31 | for p in ${TARGET_SYS}-* ; do | ||
| 32 | ln -sf $p `echo $p | sed -e s,${TARGET_SYS}-,,` | ||
| 33 | done | ||
| 34 | } | ||
diff --git a/meta/packages/binutils/binutils-cross-sdk_2.17.50.0.5.bb b/meta/packages/binutils/binutils-cross-sdk_2.17.50.0.5.bb new file mode 100644 index 0000000000..7d3bb6c09c --- /dev/null +++ b/meta/packages/binutils/binutils-cross-sdk_2.17.50.0.5.bb | |||
| @@ -0,0 +1,20 @@ | |||
| 1 | SECTION = "devel" | ||
| 2 | require binutils_${PV}.bb | ||
| 3 | inherit sdk | ||
| 4 | DEPENDS += "flex-native bison-native" | ||
| 5 | FILESDIR = "${@os.path.dirname(bb.data.getVar('FILE',d,1))}/binutils-${PV}" | ||
| 6 | EXTRA_OECONF = "--with-sysroot=${CROSS_DIR}/${TARGET_SYS} \ | ||
| 7 | --program-prefix=${TARGET_PREFIX}" | ||
| 8 | |||
| 9 | do_stage() { | ||
| 10 | : | ||
| 11 | } | ||
| 12 | |||
| 13 | do_install () { | ||
| 14 | autotools_do_install | ||
| 15 | |||
| 16 | # Install the libiberty header | ||
| 17 | install -d ${D}${includedir} | ||
| 18 | install -m 644 ${S}/include/ansidecl.h ${D}${includedir} | ||
| 19 | install -m 644 ${S}/include/libiberty.h ${D}${includedir} | ||
| 20 | } | ||
