diff options
-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 |