forked from travisg/toolchains
-
Notifications
You must be signed in to change notification settings - Fork 0
/
doit
executable file
·263 lines (228 loc) · 6.79 KB
/
doit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
#!/usr/bin/env bash
OS=`uname`
HOSTARCH=`uname -m`
PARALLEL=
FETCH=0
QUIET=0
GNU_FTP=ftp://ftp.gnu.org/gnu
ARCHIVES=archives
PATCHES=./patches/
# Get absolute path, will spawn a subshell then exit so our pwd is retained
SCRIPTROOT=$(cd "$(dirname $0)" && pwd)
# Cause errors in pipes to return failure when necessary
set -o pipefail
function err() {
echo "doit: error during build"
if [ "$QUIET" = "1" ]; then
echo "doit: dumping last 50 lines of build log..."
echo "doit: see $SCRIPTROOT/build.log for the full details"
tail -50 $SCRIPTROOT/build.log
fi
exit 1
}
trap err ERR
function help()
{
echo "Options"
echo " -a <arch list> architectures to build"
echo " example: -a 'arm' or -a 'arm i386 x86_64' for multiple"
echo " -t <target OS name> target OS name"
echo " example: elf, beelzebub (default)"
echo " -c use compilation cache (ccache must be installed)"
echo " -f fetch source releases from upstream"
echo " -h|-? display this help message"
echo " -j<#> use <#> parallel workers to build"
echo " -q make the build quieter"
exit 1
}
function log()
{
if [ "$QUIET" = "1" ]; then
"$@" >> $SCRIPTROOT/build.log 2>&1
else
"$@" 2>&1 | tee -a $SCRIPTROOT/build.log
fi
}
function extract-tool()
{
#echo "extract-tool " $1 $2 $3
TARFILE=${1}-${2}.tar$3
TARGETDIR=${1}-${2}
if [ -f ${TARGETDIR}/.extracted ]; then
log echo "$TARFILE already extracted into $TARGETDIR, skipping"
return 0
fi
if [ ! -f $ARCHIVES/$TARFILE ]; then
log echo "error, missing $TARFILE"
exit 1
fi
echo extracting $TARFILE
rm -rf $TARGETDIR
tar xf $ARCHIVES/$TARFILE || exit 1
PATCH=$PATCHES/$1-patch-$2.txt
if [ -f "$PATCH" ]; then
log echo patching $1
log patch -d $TARGETDIR -p1 < $PATCH || exit 1
fi
touch $TARGETDIR/.extracted || exit 1
}
if [ "$OS" = "Linux" ]; then
COUNT=`grep processor /proc/cpuinfo | wc -l`
PARALLEL=-j`expr $COUNT + $COUNT`
fi
if [ "$OS" = "Darwin" ]; then
export CPPFLAGS=-I/opt/local/include
export LDFLAGS=-L/opt/local/lib
export CXXFLAGS="-fbracket-depth=1024"
fi
if [ "$OS" = "FreeBSD" ]; then
export CPPFLAGS=-I/usr/local/include
export LDFLAGS=-L/usr/local/lib
fi
MAKE=make
if [ "$OS" = "FreeBSD" ]; then
MAKE=gmake
fi
if [ "$HOSTARCH" = "amd64" ]; then
HOSTARCH=x86_64
fi
if [ $# == "0" ]; then
help
fi
while getopts a:t:cfhj:q? arg
do
case $arg in
a ) ARCHES=$OPTARG ;;
t ) TARGOS=$OPTARG ;;
c ) CCACHE=1 ;;
j ) PARALLEL="-j$OPTARG" ;;
f ) FETCH=1 ;;
q ) QUIET=1 ;;
h ) help ;;
? ) help ;;
* ) echo "unrecognized option '$arg'" ; exit 1 ;;
esac
done
if [ -z "$ARCHES" ]; then
echo need to specify architectures to build
echo ie -a "arm sh"
exit 1
fi
if [ -z "$TARGOS" ]; then
TARGOS=beelzebub
fi
if [ -z $(which makeinfo) ]; then
echo makeinfo not found. On debian/ubuntu this is provided by the texinfo package.
exit 1
fi
export CC="cc"
export CXX="c++"
if [ "$CCACHE" = "1" ]; then
export CC="ccache $CC"
export CXX="ccache $CXX"
fi
log date
log echo "ARCHES='$ARCHES' PARALLEL='$PARALLEL' FETCH='$FETCH' CCACHE='$CCACHE'"
# load GCCVER and BINVER
. toolvers
if [ "$FETCH" = "1" ]; then
if [ ! -f $ARCHIVES/binutils-$BINVER.tar.gz ]; then
echo fetching binutils-$BINVER
log wget -P $ARCHIVES -N $GNU_FTP/binutils/binutils-$BINVER.tar.gz
fi
if [ ! -f $ARCHIVES/gcc-$GCCVER.tar.gz ]; then
echo fetching gcc-$GCCVER
log wget -P $ARCHIVES -N $GNU_FTP/gcc/gcc-$GCCVER/gcc-$GCCVER.tar.gz
fi
if [ ! -f $ARCHIVES/gdb-$GDBVER.tar.xz ]; then
echo fetching gdb-$GDBVER
log wget -P $ARCHIVES -N $GNU_FTP/gdb/gdb-$GDBVER.tar.xz
fi
if [ ! -f $ARCHIVES/mpfr-$MPFRVER.tar.gz ]; then
echo fetching mpfr-$MPFRVER
log wget -P $ARCHIVES -N $GNU_FTP/mpfr/mpfr-$MPFRVER.tar.gz
fi
if [ ! -f $ARCHIVES/mpc-$MPCVER.tar.gz ]; then
echo fetching mpc-$MPCVER
log wget -P $ARCHIVES -N $GNU_FTP/mpc/mpc-$MPCVER.tar.gz
fi
if [ ! -f $ARCHIVES/gmp-$GMPVER.tar.xz ]; then
echo fetching gmp-$GMPVER
log wget -P $ARCHIVES -N $GNU_FTP/gmp/gmp-$GMPVER.tar.xz
fi
fi
if [ ! -f .extracted-stamp ]; then
extract-tool binutils $BINVER .gz
extract-tool gcc $GCCVER .gz
extract-tool gdb $GDBVER .xz
extract-tool gmp $GMPVER .xz
extract-tool mpc $MPCVER .gz
extract-tool mpfr $MPFRVER .gz
touch .extracted-stamp
fi
# link the last three libs into gcc
pushd gcc-$GCCVER
ln -sf ../gmp-$GMPVER gmp
ln -sf ../mpc-$MPCVER mpc
ln -sf ../mpfr-$MPFRVER mpfr
popd
for ARCH in $ARCHES; do
echo building for arch \"$ARCH\"
if [ "$ARCH" == "arm" ]; then
TARGET=arm-eabi
else
TARGET=$ARCH-$TARGOS
fi
INSTALLPATH=`pwd`/toolchain-$TARGET-$GCCVER-$OS-$HOSTARCH
BINBUILDPATH=build-binutils-$BINVER-$ARCH-$OS-$HOSTARCH
GCCBUILDPATH=build-gcc-$GCCVER-$ARCH-$OS-$HOSTARCH
GDBBUILDPATH=build-gdb-$GDBVER-$ARCH-$OS-$HOSTARCH
export PATH=$INSTALLPATH/bin:$PATH
COMMON_OPTIONS=" --target=$TARGET --prefix=$INSTALLPATH --disable-werror "
if [ "$TARGOS" != "elf" ]; then
COMMON_OPTIONS=" --with-sysroot=$SCRIPTROOT/sysroots/$TARGOS $COMMON_OPTIONS"
fi
# Building Binutils
if [ ! -f $BINBUILDPATH/built.txt ]; then
echo building binutils
mkdir -p $BINBUILDPATH
pushd $BINBUILDPATH
log ../binutils-$BINVER/configure $COMMON_OPTIONS
log $MAKE $PARALLEL
log $MAKE install
touch built.txt
popd
fi
# Building GCC
if [ ! -f $GCCBUILDPATH/built.txt ]; then
echo building gcc
ARCH_OPTIONS=
if [ $ARCH == "arm" ]; then
ARCH_OPTIONS="--with-cpu=arm926ej-s --with-fpu=vfp"
fi
mkdir -p $GCCBUILDPATH
pushd $GCCBUILDPATH
log ../gcc-$GCCVER/configure $COMMON_OPTIONS --enable-languages=c,c++ $ARCH_OPTIONS
log $MAKE all-gcc $PARALLEL
log $MAKE all-target-libgcc $PARALLEL
log $MAKE install-gcc
log $MAKE install-target-libgcc
touch built.txt
popd
fi
# if [ ! -f $GDBBUILDPATH/built.txt ]; then
# case "$TARGET" in
# aarch64-elf) EXTRA_TARGETS="--enable-targets=arm-eabi" ;;
# *) EXTRA_TARGETS="" ;;
# esac
# echo building gdb
# mkdir -p $GDBBUILDPATH
# pushd $GDBBUILDPATH
# log ../gdb-$GDBVER/configure $COMMON_OPTIONS $EXTRA_TARGETS
# log make $PARALLEL
# log make install
# touch built.txt
# popd
# fi
done
echo all done