-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuildcross.sh
More file actions
executable file
·480 lines (389 loc) · 9.87 KB
/
buildcross.sh
File metadata and controls
executable file
·480 lines (389 loc) · 9.87 KB
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
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
#!/bin/sh
##############################################################################
# Copyright (C) 2009 Ladislav Klenovic <klenovic@nucleonsoft.com>
#
# This file is part of Nucleos kernel.
#
# Build a cross compiler. Based on crosstool by Dan Kegel.
# See http://www.kegel.com/crosstool for more details.
#
# Nucleos kernel is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, version 2 of the License.
##############################################################################
###
# Build a cross toolchain.
# Only the binutils-gcc-newlib configuration is supported for now.
#
# E.g.:
# mkdir toolchain
# cd toolchain
# copy this script into toolchain
# run:
# KERNELDIR=/path/to/nucleos/kernel ./buildcross.sh -b /path/to/binutils -c /path/to/gcc -n /path/to/newlib -g /path/to/gcc
#
# NOTE: The binutils, gcc and newlib must ported to nucleos.
###
if [[ `id -u` == 0 ]]; then
echo "Don't run this script with root privileges!"
exit 1
fi
cpu=i686
manufacturer=pc
kernel=nucleos
os=newlib
build=`/bin/arch`-pc-linux-gnu
workdir=`pwd`
prefix=$workdir/crosstool
target=${cpu}-${manufacturer}-${kernel}-${os}
# source directory
binutils_srcdir=
# build
binutils_build=$build
# target string
binutils_target=$target
# building directory
binutils_builddir=
# core for build the full cross compiler
gcc_core_srcdir=
gcc_core_build=$build
gcc_core_target=$target
gcc_core_builddir=
gcc_core_prefix=
gcc_core_prefix_link=$workdir/gcc-core
# core for build the full cross compiler
glibc_srcdir=
glibc_target=
glibc_build=$build
glibc_host=$target
glibc_builddir=
# full cross compiler
gcc_srcdir=
gcc_build=$build
gcc_target=$target
gcc_builddir=
# newlib
newlib_srcdir=
newlib_build=$build
newlib_target=$target
newlib_builddir=
usage()
{
echo "Usage: `basename $0` [-h] [-b binutils] [-c core_gcc] [-g full_gcc] [-n newlib] [-p cross]"
echo "[-b binutils package]: path to binutils directory"
echo "[-c core gcc package]: path to gcc core directory"
echo "[-g full gcc package]: path to gcc directory"
echo "[-n newlib package]: path to newlib directory"
echo "[-p core_cross:cross]: installation prefix for core cross and full cross toolset (current directory is default)"
echo " DON'T USE THIS, INTENDED FOR FUTURE!"
echo "[-h]: this help"
}
# Parse the string which si in form first:second and print the
# required one according to second argument
# arg1 string to parse
# arg2 which string is required to return
parse_string()
{
# what to return
if [[ $2 == 1 ]]; then
echo ${1%:*}
fi
if [[ $2 == 2 ]]; then
# remove the first string
_str2=${1#${1%:*}}
# remove `:' from begining
_str2=${_str2#:}
echo $_str2
fi
echo ""
}
abspath()
{
if [ -n $1 ]; then
echo `cd $1;pwd`
fi
echo ""
}
install_system_headers()
{
echo "Installing system headers ..."
if [[ "$1" == "x" ]]; then
echo "Missing kernel directory (set KERNELDIR)!"
exit 1
fi
kernel_dir=${1#x}
if [[ ! -e $kernel_dir ]]; then
echo "Kernel directory doesn't exist!"
exit 1
fi
kernel_dir=`abspath $kernel_dir`
if [[ "$2" == "x" ]]; then
echo "Missing destination path for system headers!"
exit 1
fi
dst_headers_dir=${2#x}
if [[ ! -e $dst_headers_dir ]]; then
echo "Destination directory for headers doesn't exist!"
exit 1
fi
dst_headers_dir=`abspath $dst_headers_dir`
prevdir=`pwd`
cd $kernel_dir
# generate kernel headers
if [[ "$cpu" == "i686" ]]; then
ARCH=x86
fi
make ARCH=$ARCH headers_check
cd $prevdir
mkdir -p $dst_headers_dir
# FIXME: expects that headers were installed in kernel tree
# i.e. `make ARCH=$arch headers_install' was executed
cp -r $kernel_dir/usr/include/* $dst_headers_dir/
}
# build install binutils
build_binutils()
{
echo "Building binutils ($binutils_name) ..."
if [ -a $binutils_builddir ]; then
echo "Deleting $binutils_builddir ..."
rm -rf $binutils_builddir
fi
mkdir -p $binutils_builddir
if [[ $? != 0 ]]; then
echo "Can't create build directory!"
exit 1
fi
cd $binutils_builddir
$binutils_srcdir/configure --build=$binutils_build \
--target=$binutils_target \
--prefix=$prefix \
--disable-nls \
--with-gnu-as \
--with-gnu-ld \
--disable-werror \
$binutils_sysroot_arg
# build
make all
make install
echo "Done"
cd $workdir
}
# build core gcc (just to build newlib or glibc)
build_gcc_core()
{
echo "Building core gcc ($gcc_core_name) ..."
if [ -a $gcc_core_builddir ]; then
echo "Deleting $gcc_core_builddir ..."
rm -rf $gcc_core_builddir
fi
mkdir -p $gcc_core_builddir
if [[ $? != 0 ]]; then
echo "Can't create build directory!"
exit 1
fi
cd $gcc_core_builddir
# Use --with-local-prefix so older gccs don't look in /usr/local (http://gcc.gnu.org/PR10532)
# Use funky prefix so it doesn't contaminate real prefix, in case gcc_srcdir != gcc_core_srcdir
$gcc_core_srcdir/configure --build=$gcc_core_build \
--target=$gcc_core_target \
--prefix=$prefix \
--with-local-prefix=${prefix}/${target} \
--disable-multilib \
--without-headers \
--with-newlib \
--disable-nls \
--enable-threads=no \
--enable-symvers=gnu \
--enable-languages=c \
--disable-shared \
--with-gnu-as \
--with-gnu-ld \
--disable-werror \
${gcc_core_sysroot_arg}
# build
make all-gcc
make install-gcc
echo "Done"
cd $workdir
}
# build newlib
build_newlib()
{
if [ -a $newlib_builddir ]; then
echo "Deleting $newlib_builddir ..."
rm -rf $newlib_builddir
fi
echo "Creating build directory ..."
mkdir -p $newlib_builddir
if [[ $? != 0 ]]; then
echo "Can't create build directory!"
exit 1
fi
echo "Configure $newlib_name package ..."
cd $newlib_builddir
CC_FOR_TARGET=$prefix/bin/$gcc_core_target-gcc \
AS_FOR_TARGET=$prefix/bin/$binutils_target-as \
LD_FOR_TARGET=$prefix/bin/$binutils_target-ld \
AR_FOR_TARGET=$prefix/bin/$binutils_target-ar \
RANLIB_FOR_TARGET=$prefix/bin/$binutils_target-ranlib \
$newlib_srcdir/configure --build=$newlib_build \
--target=$newlib_target \
--prefix=$prefix \
--with-gnu-as \
--with-gnu-ld \
--disable-shared \
--disable-werror
# build
echo "Building $newlib_name ..."
make
make install
echo "Done"
cd $workdir
}
# build full gcc
build_gcc_full()
{
if [ -a $gcc_builddir ]; then
echo "Deleting $gcc_builddir ..."
rm -rf $gcc_builddir
fi
echo "Creating build directory ..."
mkdir -p $gcc_builddir
if [[ $? != 0 ]]; then
echo "Can't create build directory!"
exit 1
fi
#
# without libstdc++ support
#
# echo "Run autoconf in $gcc_srcdir/libstdc++-v3"
# cd $gcc_srcdir/libstdc++-v3 >&/dev/null
# autoconf
# cd $workdir
echo "Configure $gcc_name package ..."
cd $gcc_builddir
CC_FOR_TARGET=$prefix/bin/$gcc_core_target-gcc \
AS_FOR_TARGET=$prefix/bin/$binutils_target-as \
LD_FOR_TARGET=$prefix/bin/$binutils_target-ld \
AR_FOR_TARGET=$prefix/bin/$binutils_target-ar \
RANLIB_FOR_TARGET=$prefix/bin/$binutils_target-ranlib \
$gcc_srcdir/configure --build=$gcc_build \
--target=$gcc_target \
--prefix=$prefix \
--enable-languages=c \
--with-headers=$prefix/$target/include \
--disable-shared \
--disable-nls \
--enable-symvers=gnu \
--enable-c99 \
--enable-long-long \
--with-gnu-as \
--with-gnu-ld \
--with-newlib \
--disable-werror \
$gcc_sysroot_arg
# build
echo "Building gcc ..."
make all
make install
echo "Done"
cd $workdir
}
# Check arguments.
while getopts "b:c:g:l:n:hp:" OPT "$@"
do
case "$OPT" in
b) # binutils package
binutils_srcdir=`parse_string $OPTARG 1`
if [ -z $binutils_srcdir ]; then
echo "Empty argument (missing binutils source)!"
exit 1
fi
binutils_srcdir=`abspath $binutils_srcdir`
# just base name
binutils_name=`basename $binutils_srcdir`
# build dircetory path
binutils_builddir=$workdir/${binutils_name}-build
;;
c) # gcc cores
gcc_core_srcdir=`parse_string $OPTARG 1`
if [ -z $gcc_core_srcdir ]; then
echo "Empty argument (missing gcc core source)!"
exit 1
fi
gcc_core_srcdir=`abspath $gcc_core_srcdir`
gcc_core_name=`basename $gcc_core_srcdir`
# build dircetory path
gcc_core_builddir=$workdir/${gcc_core_name}-core-build
# installation directory
gcc_core_prefix=$workdir/${gcc_core_name}-core-install
;;
g) # gcc
gcc_srcdir=`parse_string $OPTARG 1`
if [ -z $gcc_srcdir ]; then
echo "Empty argument (missing gcc source)!"
exit 1
fi
gcc_srcdir=`abspath $gcc_srcdir`
gcc_name=`basename $gcc_srcdir`
# build dircetory path
gcc_builddir=$workdir/${gcc_name}-build
;;
n) # newlib
newlib_srcdir=`parse_string $OPTARG 1`
if [ -z $newlib_srcdir ]; then
echo "Empty argument (missing newlib source)!"
exit 1
fi
newlib_srcdir=`abspath $newlib_srcdir`
newlib_name=`basename $newlib_srcdir`
# build dircetory path
newlib_builddir=$workdir/${newlib_name}-build
;;
h) # usage
usage
exit 0
;;
p) # prefixes
prefix=$OPTARG
parse_string $OPTARG 1
parse_string $OPTARG 2
if [ -z "${prefix}" ]; then
# default install path for toolset
prefix=$workdir/crosstool
else
if [[ $prefix != /* ]]; then
prefix=$workdir/$prefix
fi
fi
;;
*) # unknown option
echo $OPTARG
usage
exit 1
;;
esac
done
echo "Creating installation directory ..."
mkdir -p ${prefix}/${target}
### Build binutils
if [ -n "$binutils_builddir" ]; then
build_binutils
fi
### Build a core gcc
if [ -n "$gcc_core_builddir" ]; then
build_gcc_core
fi
### Build a newlib
if [ -n "$newlib_builddir" ]; then
build_newlib
fi
echo "Install system headers"
header_dir=$prefix/$target/include
install_system_headers x${KERNELDIR} x${header_dir}
### Build full cross compiler
if [ -n "$gcc_builddir" ]; then
build_gcc_full
fi
echo "Cross-toolchain build complete"
exit 0