diff options
author | Chris Larson <clarson@kergoth.com> | 2003-09-17 16:43:37 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2003-09-17 16:43:37 +0000 |
commit | eb632095cfe44be19267e07ecd9683276d40b52e (patch) | |
tree | 35e3b51519bed91ac6722d2930579feca56a2013 /content | |
parent | 75cc743a8748f799c85b659a7638ff11a220e4ca (diff) |
Add initial gcc 3.3.1 final 2nd pass, and make cross binutils packages obey CROSS_DIR.
BKrev: 3f688f39FwLPt1L0UFEcjpB37UrOlQ
Diffstat (limited to 'content')
-rw-r--r-- | content/cross-binutils-2.13.2.oe | 27 | ||||
-rw-r--r-- | content/cross-binutils-2.14.90.0.6.oe | 22 | ||||
-rw-r--r-- | content/cross-binutils-2.14.oe | 27 | ||||
-rw-r--r-- | content/cross-gcc-3.3.1.oe | 0 |
4 files changed, 76 insertions, 0 deletions
diff --git a/content/cross-binutils-2.13.2.oe b/content/cross-binutils-2.13.2.oe index e69de29bb2..6003e3e488 100644 --- a/content/cross-binutils-2.13.2.oe +++ b/content/cross-binutils-2.13.2.oe @@ -0,0 +1,27 @@ +DESCRIPTION="binutils 2.13 from FSF" + +LICENSE="GPL" +RDEPEND="" +DEPEND="" +PROVIDES="virtual/${ARCH}-${OS}-binutils" + +SRC_URI="ftp://ftp.gnu.org/pub/gnu/binutils/binutils-2.13.2.tar.gz" +S = ${WORKDIR}/binutils-${PV} + +OLDOS := ${OS} +OLDARCH := ${ARCH} +CROSS_DIR := ${CROSS_DIR} +inherit noncross autotools + +do_configure() { + ./configure --prefix=${CROSS_DIR} --target=${OLDARCH}-${OLDOS} +} + +EXTRA_OEMAKE = +do_compile() { + oe_runmake +} + +do_install() { + oe_runmake install +} diff --git a/content/cross-binutils-2.14.90.0.6.oe b/content/cross-binutils-2.14.90.0.6.oe index e69de29bb2..c8e186665c 100644 --- a/content/cross-binutils-2.14.90.0.6.oe +++ b/content/cross-binutils-2.14.90.0.6.oe @@ -0,0 +1,22 @@ +PROVIDES = virtual/${OLDARCH}-${OLDOS}-binutils + +SRC_URI = http://ftp.kernel.org/pub/linux/devel/binutils/binutils-${PV}.tar.gz +S = ${WORKDIR}/binutils-${PV} + +OLDOS := ${OS} +OLDARCH := ${ARCH} +CROSS_DIR := ${CROSS_DIR} +inherit noncross autotools + +do_configure() { + ./configure --prefix=${CROSS_DIR} --target=${OLDARCH}-${OLDOS} +} + +EXTRA_OEMAKE = +do_compile() { + oe_runmake +} + +do_install() { + oe_runmake install +} diff --git a/content/cross-binutils-2.14.oe b/content/cross-binutils-2.14.oe index e69de29bb2..7fcdfd77d3 100644 --- a/content/cross-binutils-2.14.oe +++ b/content/cross-binutils-2.14.oe @@ -0,0 +1,27 @@ +DESCRIPTION="binutils 2.13 from FSF" + +LICENSE="GPL" +RDEPEND="" +DEPEND="" +PROVIDES="virtual/${ARCH}-${OS}-binutils" + +SRC_URI="${GNU_MIRROR}/binutils/binutils-${PV}.tar.gz" +S = ${WORKDIR}/binutils-${PV} + +OLDOS := ${OS} +OLDARCH := ${ARCH} +CROSS_DIR := ${CROSS_DIR} +inherit noncross autotools + +do_configure() { + ./configure --prefix=${CROSS_DIR} --target=${OLDARCH}-${OLDOS} +} + +EXTRA_OEMAKE = +do_compile() { + oe_runmake +} + +do_install() { + oe_runmake install +} diff --git a/content/cross-gcc-3.3.1.oe b/content/cross-gcc-3.3.1.oe new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/content/cross-gcc-3.3.1.oe |