blob: e60180e6d81cb988cd486b18572943d8b3e64877 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
DESCRIPTION = "Precompiled SharpROM toolchain glue package"
LICENSE = "GPL"
SECTION = "base"
# This needs to be extracted to /usr/local/arm :
# SRC_URI = "http://handhelds.org/download/projects/toolchain/archive/cross-2.95.3.tar.bz2"
inherit native
DEPENDS = ""
COMPATIBLE_HOST = 'i.86.*-linux'
do_stage() {
if [ ! -e /usr/local/arm/2.95.3/bin/arm-linux-gcc-2.95 ]
then
die "You need to install the Sharp Toolchain to /usr/local/arm and rename the compiler to arm-linux-gcc-2.95"
fi
if [ ! -e /usr/local/arm/2.95.3/bin/arm-linux-ld-2.11.2 ]
then
die "You need to install the Sharp Toolchain to /usr/local/arm and rename the linker to arm-linux-ld-2.11.2"
fi
ln -sf /usr/local/arm/2.95.3/bin/arm-linux-gcc-2.95 ${STAGING_BINDIR}/arm-linux-gcc
ln -sf /usr/local/arm/2.95.3/bin/arm-linux-ld-2.11.2 ${STAGING_BINDIR}/arm-linux-ld
}
|