Rev 4191 | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
145 | decky | 1 | #!/bin/bash |
2 | |||
3 | # Cross-Compiler Toolchain for ${PLATFORM} |
||
4 | # by Martin Decky <martin@decky.cz> |
||
5 | # |
||
6 | # GPL'ed, copyleft |
||
7 | # |
||
8 | |||
9 | |||
10 | check_error() { |
||
11 | if [ "$1" -ne "0" ]; then |
||
12 | echo |
||
13 | echo "Script failed: $2" |
||
14 | exit |
||
15 | fi |
||
16 | } |
||
17 | |||
3369 | decky | 18 | if [ -z "${CROSS_PREFIX}" ] ; then |
19 | CROSS_PREFIX="/usr/local" |
||
20 | fi |
||
21 | |||
4191 | decky | 22 | BINUTILS_VERSION="2.19.1" |
23 | GCC_VERSION="4.3.3" |
||
145 | decky | 24 | |
25 | BINUTILS="binutils-${BINUTILS_VERSION}.tar.gz" |
||
2077 | decky | 26 | GCC_CORE="gcc-core-${GCC_VERSION}.tar.bz2" |
27 | GCC_OBJC="gcc-objc-${GCC_VERSION}.tar.bz2" |
||
28 | GCC_CPP="gcc-g++-${GCC_VERSION}.tar.bz2" |
||
145 | decky | 29 | |
30 | BINUTILS_SOURCE="ftp://ftp.gnu.org/gnu/binutils/" |
||
31 | GCC_SOURCE="ftp://ftp.gnu.org/gnu/gcc/gcc-${GCC_VERSION}/" |
||
32 | |||
33 | PLATFORM="ia64" |
||
34 | WORKDIR=`pwd` |
||
35 | TARGET="${PLATFORM}-pc-linux-gnu" |
||
3369 | decky | 36 | PREFIX="${CROSS_PREFIX}/${PLATFORM}" |
145 | decky | 37 | BINUTILSDIR="${WORKDIR}/binutils-${BINUTILS_VERSION}" |
38 | GCCDIR="${WORKDIR}/gcc-${GCC_VERSION}" |
||
39 | OBJDIR="${WORKDIR}/gcc-obj" |
||
40 | |||
41 | echo ">>> Downloading tarballs" |
||
42 | |||
43 | if [ ! -f "${BINUTILS}" ]; then |
||
44 | wget -c "${BINUTILS_SOURCE}${BINUTILS}" |
||
45 | check_error $? "Error downloading binutils." |
||
46 | fi |
||
2077 | decky | 47 | if [ ! -f "${GCC_CORE}" ]; then |
48 | wget -c "${GCC_SOURCE}${GCC_CORE}" |
||
49 | check_error $? "Error downloading GCC Core." |
||
145 | decky | 50 | fi |
2077 | decky | 51 | if [ ! -f "${GCC_OBJC}" ]; then |
52 | wget -c "${GCC_SOURCE}${GCC_OBJC}" |
||
53 | check_error $? "Error downloading GCC Objective C." |
||
54 | fi |
||
55 | if [ ! -f "${GCC_CPP}" ]; then |
||
56 | wget -c "${GCC_SOURCE}${GCC_CPP}" |
||
57 | check_error $? "Error downloading GCC C++." |
||
58 | fi |
||
145 | decky | 59 | |
60 | echo ">>> Creating destionation directory" |
||
61 | if [ ! -d "${PREFIX}" ]; then |
||
62 | mkdir -p "${PREFIX}" |
||
63 | test -d "${PREFIX}" |
||
64 | check_error $? "Unable to create ${PREFIX}." |
||
65 | fi |
||
66 | |||
67 | echo ">>> Creating GCC work directory" |
||
68 | if [ ! -d "${OBJDIR}" ]; then |
||
69 | mkdir -p "${OBJDIR}" |
||
70 | test -d "${OBJDIR}" |
||
71 | check_error $? "Unable to create ${OBJDIR}." |
||
72 | fi |
||
73 | |||
74 | echo ">>> Unpacking tarballs" |
||
75 | tar -xvzf "${BINUTILS}" |
||
76 | check_error $? "Error unpacking binutils." |
||
2077 | decky | 77 | tar -xvjf "${GCC_CORE}" |
78 | check_error $? "Error unpacking GCC Core." |
||
79 | tar -xvjf "${GCC_OBJC}" |
||
80 | check_error $? "Error unpacking GCC Objective C." |
||
81 | tar -xvjf "${GCC_CPP}" |
||
82 | check_error $? "Error unpacking GCC C++." |
||
145 | decky | 83 | |
84 | echo ">>> Compiling and installing binutils" |
||
85 | cd "${BINUTILSDIR}" |
||
86 | check_error $? "Change directory failed." |
||
2139 | decky | 87 | ./configure "--target=${TARGET}" "--prefix=${PREFIX}" "--program-prefix=${TARGET}-" "--disable-nls" |
145 | decky | 88 | check_error $? "Error configuring binutils." |
89 | make all install |
||
90 | check_error $? "Error compiling/installing binutils." |
||
91 | |||
92 | echo ">>> Compiling and installing GCC" |
||
93 | cd "${OBJDIR}" |
||
94 | check_error $? "Change directory failed." |
||
3177 | jermar | 95 | "${GCCDIR}/configure" "--target=${TARGET}" "--prefix=${PREFIX}" "--program-prefix=${TARGET}-" --with-gnu-as --with-gnu-ld --disable-nls --disable-threads --enable-languages=c,objc,c++,obj-c++ --disable-multilib --disable-libgcj --disable-shared |
145 | decky | 96 | check_error $? "Error configuring GCC." |
97 | PATH="${PATH}:${PREFIX}/bin" make all-gcc install-gcc |
||
98 | check_error $? "Error compiling/installing GCC." |
||
99 | |||
100 | echo |
||
101 | echo ">>> Cross-compiler for ${TARGET} installed." |