-
Notifications
You must be signed in to change notification settings - Fork 80
/
buildgcc-4.9.sh
executable file
·581 lines (481 loc) · 22.9 KB
/
buildgcc-4.9.sh
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
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
#!/bin/bash
# Script for GCC chainload in OS X made for EDKII
#
# Primary use is for creating better crosscompile support than
# mingw-gcc-build.py that is found in BaseTools/gcc/
#
# With this we can use Native GCC chainload for EDKII
# development
#
# Xcode Tools are required
# Script tested on "Xcode 3.2.2" - Snow Leopard
# "Xcode 4.2" - Snow Leopard
# "Xcode 4.6" - Lion
# "Xcode 4.6" - Mountain Lion
# "Xcode 5.0" - Mountain Lion
# "Xcode 5.0.1" - Mavericks
# "Xcode 6.1" - Yosemite
#
#
# Created by Jadran Puharic on 1/25/12.
# Enhanced by JrCs on 01/19/2013.
#
set -u # exit with error if unbound variables
# GCC toolchain source version
# here we can change source versions of tools
#
export BINUTILS_VERSION=${BINUTILS_VERSION:-binutils-2.25}
export GCC_VERSION=${GCC_VERSION:-4.9.3}
# Version of libraries are from ./contrib/download_prerequisites in gcc source directory
export GMP_VERSION=${GMP_VERSION:-gmp-6.0.0a}
export MPFR_VERSION=${MPFR_VERSION:-mpfr-3.1.3}
export MPC_VERSION=${MPC_VERSION:-mpc-1.0.3}
export ISL_VERSION=${ISL_VERSION:-isl-0.12.2}
export CLOOG_VERSION=${CLOOG_VERSION:-cloog-0.18.1}
# Change PREFIX if you want gcc and binutils
# installed on different place
#
export PREFIX=${PREFIX:-~/src/opt/local}
export GCC_MAJOR_VERSION=$(echo $GCC_VERSION | awk -F. '{ print $1$2}')
# You can change DIR_MAIN if u wan't gcc source downloaded
# in different folder.
#
export RAMDISK_MNT_PT=/tmp/buildgcc-ramdisk
export DIR_MAIN=${DIR_MAIN:-~/src}
export DIR_TOOLS=${DIR_TOOLS:-$DIR_MAIN/tools}
export DIR_GCC=${DIR_GCC:-$DIR_TOOLS/gcc}
export DIR_BUILD=${DIR_BUILD:-$RAMDISK_MNT_PT}
export DIR_DOWNLOADS=${DIR_DOWNLOADS:-$DIR_TOOLS/download}
export DIR_LOGS=${DIR_LOGS:-$DIR_TOOLS/logs}
# Set MAKE and LD to prevent problem during compilation when Xcode path has spaces
#
export MAKE=make
export LD=ld
# Here we set MAKEFLAGS for GCC so it knows how many cores we can use
# faster compile !
export MAKEFLAGS="-j $(( $(sysctl -n hw.ncpu) * 2 ))"
# Default locale
export LC_ALL=POSIX
# Use standard PATH
export PATH="/usr/bin:/bin:/usr/sbin:/sbin"
### Check Functions ###
# Function: checking installation of Xcode Tools
CheckXCode () {
local OSXVER="`/usr/bin/sw_vers -productVersion | cut -d '.' -f1,2`"
local OSXARCH="`/usr/bin/uname -m`"
local OSXREV="`/usr/bin/uname -r`"
export BUILDARCH="$OSXARCH"
export BUILDREV="$OSXREV"
echo " Running on Mac OS X ${OSXVER}, with ${OSXARCH} architecture."
if [[ ! -x /usr/bin/xcodebuild ]]; then
echo "ERROR: Install Xcode Tools from Apple before using this script." >&2
exit 1
else
export SDK="`/usr/bin/xcodebuild -version -sdk macosx${OSXVER} Path 2>/dev/null`"
[ -z "${SDK}" ] && export SDK="/"
if [ ! -d "${SDK}/usr/include" ]; then
echo "ERROR: Cannot find Xcode SDK." >&2
echo "Please run Xcode and select an available \"Command Line Tools\" from Xcode->Preferences->Locations." >&2
exit 1
else
echo " Using Xcode SDK: ${SDK}"
fi
fi
}
### Main Function START ###
# Function: Creating directory structure for EDK
[ ! -d ${DIR_MAIN} ] && mkdir ${DIR_MAIN}
[ ! -d ${DIR_TOOLS} ] && mkdir ${DIR_TOOLS}
[ ! -d ${DIR_GCC} ] && mkdir ${DIR_GCC}
[ ! -d ${DIR_DOWNLOADS} ] && mkdir ${DIR_DOWNLOADS}
[ ! -d ${DIR_LOGS} ] && mkdir ${DIR_LOGS}
[ ! -d ${PREFIX}/include ] && mkdir -p ${PREFIX}/include
# Function: to manage PATH
pathmunge () {
if [[ ! $PATH =~ (^|:)$1(:|$) ]]; then
if [[ "${2:-}" = "after" ]]; then
export PATH=$PATH:$1
else
export PATH=$1:$PATH
fi
fi
}
# RAMdisk
function mountRamDisk() {
dev_ramdisk=$(mount | grep "$RAMDISK_MNT_PT" | awk '{print $1}')
if [ -z "$dev_ramdisk" ];then
echo "- Creating new RAM disk"
dev_ramdisk=`hdiutil attach -nomount ram://3145728 | awk '{print $1}'`
[ -n "$dev_ramdisk" ] && newfs_hfs -v "BuildGCC RamDisk" "$dev_ramdisk"
[ ! -d "$RAMDISK_MNT_PT" ] && mkdir "$RAMDISK_MNT_PT"
mount -t hfs "$dev_ramdisk" "$RAMDISK_MNT_PT"
touch "$RAMDISK_MNT_PT/.metadata_never_index"
echo
fi
# Automatically remove RAMDISK on exit
trap 'echo; echo "- Ejecting RAM disk"; cd "$HOME"; umount "$RAMDISK_MNT_PT" && hdiutil detach "$dev_ramdisk"' EXIT
}
# Download #
DownloadSource () {
cd $DIR_DOWNLOADS
if [[ ! -f ${DIR_DOWNLOADS}/${GMP_VERSION}.tar.bz2 ]]; then
echo "Status: ${GMP_VERSION} not found."
curl -f -o download.tmp --remote-name ftp://ftp.gnu.org/gnu/gmp/${GMP_VERSION}.tar.bz2 || exit 1
mv download.tmp ${GMP_VERSION}.tar.bz2
fi
if [[ ! -f ${DIR_DOWNLOADS}/${MPFR_VERSION}.tar.bz2 ]]; then
echo "Status: ${MPFR_VERSION} not found."
curl -f -o download.tmp --remote-name ftp://ftp.gnu.org/gnu/mpfr/${MPFR_VERSION}.tar.bz2 || exit 1
mv download.tmp ${MPFR_VERSION}.tar.bz2
fi
if [[ ! -f ${DIR_DOWNLOADS}/${MPC_VERSION}.tar.gz ]]; then
echo "Status: ${MPC_VERSION} not found."
curl -f -o download.tmp --remote-name ftp://ftp.gnu.org/gnu/mpc/${MPC_VERSION}.tar.gz || exit 1
mv download.tmp ${MPC_VERSION}.tar.gz
fi
if [[ ! -f ${DIR_DOWNLOADS}/${ISL_VERSION}.tar.bz2 ]]; then
echo "Status: ${ISL_VERSION} not found."
curl -o download.tmp --remote-name ftp://gcc.gnu.org/pub/gcc/infrastructure/${ISL_VERSION}.tar.bz2 || exit 1
mv download.tmp ${ISL_VERSION}.tar.bz2
fi
if [[ ! -f ${DIR_DOWNLOADS}/${CLOOG_VERSION}.tar.gz ]]; then
echo "Status: ${CLOOG_VERSION} not found."
curl -o download.tmp --remote-name ftp://gcc.gnu.org/pub/gcc/infrastructure/${CLOOG_VERSION}.tar.gz || exit 1
mv download.tmp ${CLOOG_VERSION}.tar.gz
fi
if [[ ! -f ${DIR_DOWNLOADS}/${BINUTILS_VERSION}.tar.bz2 ]]; then
echo "Status: ${BINUTILS_VERSION} not found."
curl -f -o download.tmp --remote-name ftp://ftp.gnu.org/gnu/binutils/${BINUTILS_VERSION}.tar.bz2 || exit 1
mv download.tmp ${BINUTILS_VERSION}.tar.bz2
fi
if [[ ! -f ${DIR_DOWNLOADS}/gcc-${GCC_VERSION}.tar.bz2 ]]; then
echo "Status: gcc-${GCC_VERSION} not found."
curl -f -o download.tmp --remote-name http://mirrors.kernel.org/gnu/gcc/gcc-${GCC_VERSION}/gcc-${GCC_VERSION}.tar.bz2 || exit 1
mv download.tmp gcc-${GCC_VERSION}.tar.bz2
fi
}
### Extract ###
# Function to extract source tarballs
ExtractTarball ()
{
exec 3>&1 1>&2 # Save stdout and redirect stdout to stderr
local tarball="$1"
local package=${tarball%%.tar*}
tarball="${DIR_DOWNLOADS}/$tarball"
local filetype=$(file -L --brief "$tarball" | tr '[A-Z]' '[a-z]')
local tar_filter_option=""
case ${filetype} in # convert to lowercase
gzip\ *) tar_filter_option='--gzip' ;;
bzip2\ *) tar_filter_option='--bzip2';;
lzip\ *) tar_filter_option='--lzip' ;;
lzop\ *) tar_filter_option='--lzop' ;;
lzma\ *) tar_filter_option='--lzma' ;;
xz\ *) tar_filter_option='--xz' ;;
*tar\ archive*) tar_filter_option='';;
*) echo "Unrecognized file format of '$tarball'"
exit 1
;;
esac
# Get the root directory from the tarball
local first_line=$(dd if="$tarball" bs=1024 count=256 2>/dev/null | \
tar -t $tar_filter_option -f - 2>/dev/null | head -1)
local top_level_dir=${first_line#./} # remove leading ./
top_level_dir=${top_level_dir%%/*} # keep only the top level directory
[ -z "$top_level_dir" ] && echo "Error can't extract top level dir from $tarball" && exit 1
if [[ ! -d "${DIR_GCC}/$top_level_dir" ]]; then
echo "- ${package} extracting..."
rm -rf "${DIR_GCC}/$top_level_dir" # Remove old directory if exists
rm -rf "$DIR_GCC/tmp" # Remove old partial extraction
mkdir -p "$DIR_GCC/tmp" # Create temporary directory
tar -C "$DIR_GCC/tmp" -x "$tar_filter_option" -f "${tarball}"
mv "$DIR_GCC/tmp/$top_level_dir" "$DIR_GCC/$top_level_dir"
rm -rf "$DIR_GCC/tmp"
echo "- ${package} extracted"
fi
# Restore stdout for the result and close file descriptor 3
exec 1>&3-
echo "${DIR_GCC}/$top_level_dir" # Return the full path where the tarball has been extracted
}
### Compile ###
# Function: Compiling libraries needed by GCC
CompileLibs () {
if [[ ! -f $PREFIX/include/gmp.h ]]; then
# Mount RamDisk
mountRamDisk
# Compile GMP
local GMP_DIR=$(ExtractTarball "${GMP_VERSION}.tar.bz2")
rm -rf "${DIR_BUILD}/$ARCH-gmp"
mkdir -p "${DIR_BUILD}/$ARCH-gmp" && cd "${DIR_BUILD}/$ARCH-gmp"
echo "- ${GMP_VERSION} configure..."
"${GMP_DIR}"/configure --prefix=$PREFIX --with-gettext=$PREFIX > $DIR_LOGS/gmp.$ARCH.configure.log.txt 2> /dev/null
echo "- ${GMP_VERSION} make..."
make 1> /dev/null 2> $DIR_LOGS/gmp.$ARCH.make.log.txt
make install 1> $DIR_LOGS/gmp.$ARCH.install.log.txt 2> /dev/null
rm -rf "${DIR_BUILD}/$ARCH-gmp" "$GMP_DIR"
echo "- ${GMP_VERSION} installed in $PREFIX"
fi
if [[ ! -f $PREFIX/include/mpfr.h ]]; then
# Mount RamDisk
mountRamDisk
# Compile MPFR
local MPFR_DIR=$(ExtractTarball "${MPFR_VERSION}.tar.bz2")
rm -rf "${DIR_BUILD}/$ARCH-mpfr"
mkdir -p "${DIR_BUILD}/$ARCH-mpfr" && cd "${DIR_BUILD}/$ARCH-mpfr"
echo "- ${MPFR_VERSION} configure..."
"${MPFR_DIR}"/configure --prefix=$PREFIX --with-gettext=$PREFIX --with-gmp=$PREFIX > $DIR_LOGS/mpfr.$ARCH.configure.log.txt 2> /dev/null
echo "- ${MPFR_VERSION} make..."
make 1> /dev/null 2> $DIR_LOGS/mpfr.$ARCH.make.log.txt
make install 1> $DIR_LOGS/mpfr.$ARCH.install.log.txt 2> /dev/null
rm -rf "${DIR_BUILD}/$ARCH-mpfr" "$MPFR_DIR"
echo "- ${MPFR_VERSION} installed in $PREFIX"
fi
if [[ ! -f $PREFIX/include/mpc.h ]]; then
# Mount RamDisk
mountRamDisk
# Compile MPC
local MPC_DIR=$(ExtractTarball "${MPC_VERSION}.tar.gz")
rm -rf "${DIR_BUILD}/$ARCH-mpc"
mkdir -p "${DIR_BUILD}/$ARCH-mpc" && cd "${DIR_BUILD}/$ARCH-mpc"
echo "- ${MPC_VERSION} configure..."
"${MPC_DIR}"/configure --prefix=$PREFIX --with-gettext=$PREFIX --with-gmp=$PREFIX --with-mpfr=$PREFIX > $DIR_LOGS/mpc.$ARCH.configure.log.txt 2> /dev/null
echo "- ${MPC_VERSION} make..."
make 1> /dev/null 2> $DIR_LOGS/mpc.$ARCH.make.log.txt
make install 1> $DIR_LOGS/mpc.$ARCH.install.log.txt 2> /dev/null
rm -rf "${DIR_BUILD}/$ARCH-mpc" "$MPC_DIR"
echo "- ${MPC_VERSION} installed in $PREFIX"
fi
if [[ ! -f $PREFIX/lib/libisl.a ]]; then
# Mount RamDisk
mountRamDisk
# Compile ISL
local ISL_DIR=$(ExtractTarball "${ISL_VERSION}.tar.bz2")
rm -rf "${DIR_BUILD}/$ARCH-isl"
mkdir -p "${DIR_BUILD}/$ARCH-isl" && cd "${DIR_BUILD}/$ARCH-isl"
echo "- ${ISL_VERSION} configure..."
"${ISL_DIR}"/configure --prefix=$PREFIX --with-gettext=$PREFIX --with-gmp-prefix=$PREFIX --with-mpfr=$PREFIX --with-mpc=$PREFIX --with-gcc-arch=$ARCH > $DIR_LOGS/isl.$ARCH.configure.log.txt 2> /dev/null
echo "- ${ISL_VERSION} make..."
make 1> /dev/null 2> $DIR_LOGS/isl.$ARCH.make.log.txt
make install 1> $DIR_LOGS/isl.$ARCH.install.log.txt 2> /dev/null
rm -rf "${DIR_BUILD}/$ARCH-isl" "$ISL_DIR"
echo "- ${ISL_VERSION} installed in $PREFIX"
fi
if [[ ! -f $PREFIX/lib/libcloog-isl.a ]]; then
# Mount RamDisk
mountRamDisk
# Compile CLOOG
local CLOOG_DIR=$(ExtractTarball "${CLOOG_VERSION}.tar.gz")
rm -rf "${DIR_BUILD}/$ARCH-cloog"
mkdir -p "${DIR_BUILD}/$ARCH-cloog" && cd "${DIR_BUILD}/$ARCH-cloog"
echo "- ${CLOOG_VERSION} configure..."
"${CLOOG_DIR}"/configure --prefix=$PREFIX --with-gettext=$PREFIX --with-gmp-prefix=$PREFIX --with-mpfr=$PREFIX --with-mpc=$PREFIX --with-isl-prefix=$PREFIX --with-gcc-arch=$ARCH --with-isl=system --with-bits=gmp > $DIR_LOGS/cloog.$ARCH.configure.log.txt 2> /dev/null
#cd isl
make 1> /dev/null 2> $DIR_LOGS/cloog.$ARCH.make.log.txt
make install 1> $DIR_LOGS/cloog.$ARCH.install.log.txt 2> /dev/null
"${CLOOG_DIR}"/isl/configure --prefix=$PREFIX --with-gettext=$PREFIX --with-gmp-prefix=$PREFIX --with-mpfr=$PREFIX --with-mpc=$PREFIX --with-isl-prefix=$PREFIX --with-gcc-arch=$ARCH --with-isl=system --with-bits=gmp > $DIR_LOGS/cloog.$ARCH.configure.log.txt 2> /dev/null
mkdir -p "${DIR_BUILD}/$ARCH-isl" && cd "${DIR_BUILD}/$ARCH-isl"
echo "- ${ISL_VERSION} reconfigure..."
"${ISL_DIR}"/configure --prefix=$PREFIX --with-gettext=$PREFIX --with-gmp-prefix=$PREFIX --with-mpfr=$PREFIX --with-mpc=$PREFIX --with-gcc-arch=$ARCH > $DIR_LOGS/isl.$ARCH.configure.log.txt 2> /dev/null
echo "- ${ISL_VERSION} make..."
mkdir -p "${DIR_BUILD}/$ARCH-cloog" && cd "${DIR_BUILD}/$ARCH-cloog"
"${CLOOG_DIR}"/isl/configure --prefix=$PREFIX --with-gettext=$PREFIX --with-gmp-prefix=$PREFIX --with-mpfr=$PREFIX --with-mpc=$PREFIX --with-isl-prefix=$PREFIX --with-gcc-arch=$ARCH --with-isl=system --with-bits=gmp > $DIR_LOGS/cloog.$ARCH.configure.log.txt 2> /dev/null
make 1> /dev/null 2> $DIR_LOGS/isl.$ARCH.make.log.txt
make install 1> $DIR_LOGS/isl.$ARCH.install.log.txt 2> /dev/null
echo "- ${CLOOG_VERSION} make..."
make 1> /dev/null 2> $DIR_LOGS/cloog.$ARCH.make.log.txt
cd ..
rm -rf "${DIR_BUILD}/$ARCH-cloog" "$CLOOG_DIR"
echo "- ${CLOOG_VERSION} installed in $PREFIX"
fi
}
# Function: Compiling Binutils
CompileBinutils () {
if [[ -x "$PREFIX/cross/bin/$TARGET-ld" ]]; then
return
fi
# Check GMP/MPFR/MPC
[[ ! -f $PREFIX/include/gmp.h ]] && echo "Error: ${GMP_VERSION} not installed, check logs" && exit
[[ ! -f $PREFIX/include/mpfr.h ]] && echo "Error: ${MPFR_VERSION} not installed, check logs" && exit
[[ ! -f $PREFIX/include/mpc.h ]] && echo "Error: ${MPC_VERSION} not installed, check logs" && exit
[[ ! -x $PREFIX/bin/gcc ]] && echo "Error native ${GCC_VERSION} not installed !" && exit
# Mount RamDisk
mountRamDisk
# Using our native GCC compiler
# pathmunge $PREFIX/bin
export BUILD_BINUTILS_DIR=${DIR_BUILD}/$ARCH-binutils
# Extract the tarball
local BINUTILS_DIR=$(ExtractTarball "${BINUTILS_VERSION}.tar.bz2")
# Binutils build
rm -rf "$BUILD_BINUTILS_DIR"
mkdir -p "$BUILD_BINUTILS_DIR" && cd "$BUILD_BINUTILS_DIR"
echo "- ${BINUTILS_VERSION} configure..."
local cmd="${BINUTILS_DIR}/configure --host=${BUILDARCH}-apple-darwin${BUILDREV} --enable-plugins --build=${BUILDARCH}-apple-darwin${BUILDREV} --target=$TARGET --prefix=$PREFIX/cross --with-gettext=$PREFIX --with-sysroot=$PREFIX --disable-werror --with-gmp=$PREFIX --with-mpfr=$PREFIX --with-mpc=$PREFIX --with-isl=$PREFIX --with-cloog=$PREFIX --disable-isl-version-check"
local logfile="$DIR_LOGS/binutils.$ARCH.configure.log.txt"
echo "$cmd" > "$logfile"
eval "$cmd" >> "$logfile" 2>&1
echo "- ${BINUTILS_VERSION} make..."
cmd="make"
logfile="$DIR_LOGS/binutils.$ARCH.make.log.txt"
echo "$cmd" > "$logfile"
eval "$cmd" >/dev/null 2>> "$logfile"
if [[ $? -ne 0 ]]; then
echo "Error compiling ${BINUTILS_VERSION} ! Check the log $logfile"
exit 1
fi
cmd="make install"
logfile="$DIR_LOGS/binutils.$ARCH.install.log.txt"
echo "$cmd" > "$logfile"
eval "$cmd" >> "$logfile" 2>&1
if [[ $? -ne 0 ]]; then
echo "Error installing ${BINUTILS_VERSION} ! Check the log $logfile"
exit 1
fi
rm -rf "$BUILD_BINUTILS_DIR" "$BINUTILS_DIR"
[ ! -f $PREFIX/cross/bin/$TARGET-ld ] && echo "Error: ${BINUTILS_VERSION} not installed, check logs in $DIR_LOGS" && exit 1
echo "- ${BINUTILS_VERSION} installed in $PREFIX/cross"
}
GCC_patch () {
# GCC patch for 4.9.3 to allow objc in --enable-languages= also on Xcode 7.x
if [[ "${GCC_VERSION}" = "4.9.3" ]]; then
read -r -d '' diffvar <<"EOF"
--- gcc/config/darwin.c
+++ gcc/config/darwin.c
@@ -1232,6 +1232,11 @@
void
darwin_mark_decl_preserved (const char *name)
{
+ /* Actually we shouldn't mark any local symbol this way, but for now
+ this only happens with ObjC meta-data. */
+ if (darwin_label_is_anonymous_local_objc_name (name))
+ return;
+
fprintf (asm_out_file, "\t.no_dead_strip ");
assemble_name (asm_out_file, name);
fputc ('\n', asm_out_file);
EOF
echo "${diffvar}" | patch -Np0 > /dev/null
fi
}
GCC_native () {
if [[ ! -x "$PREFIX"/bin/gcc ]]; then
# Mount RamDisk
mountRamDisk
local GCC_DIR=$(ExtractTarball "gcc-${GCC_VERSION}.tar.bz2") || exit 1
cd ${GCC_DIR}
GCC_patch
local BUILD_DIR="${DIR_BUILD}/$ARCH-gcc-native"
rm -rf "$BUILD_DIR"
mkdir -p "$BUILD_DIR" && cd "$BUILD_DIR"
# Create the sdk directory and link it to the native sdk directory
# We need to create individual links, as creating a link to just $SDK would result in the real path being followed and resolved
local TOOLCHAIN_SDK_DIR="$PREFIX/sdk"
rm -rf "$TOOLCHAIN_SDK_DIR"
mkdir -p "$TOOLCHAIN_SDK_DIR"
ln -sf "$SDK/usr" "$TOOLCHAIN_SDK_DIR/usr"
ln -sf "$SDK/System" "$TOOLCHAIN_SDK_DIR/System"
export CXXFLAGS="-O2 -I$PREFIX/include -I$PREFIX/sdk/include"
export CFLAGS="-O2 -I$PREFIX/include -I$PREFIX/sdk/include"
export LDFLAGS="-L$PREFIX/lib -L$PREFIX/sdk/lib"
local cmd="${GCC_DIR}/configure --prefix='$PREFIX' --with-sysroot='$TOOLCHAIN_SDK_DIR' --enable-languages=c,c++,objc --libdir='$PREFIX/lib/gcc$GCC_MAJOR_VERSION' --includedir='$PREFIX/include/gcc$GCC_MAJOR_VERSION' --datarootdir='$PREFIX/share/gcc$GCC_MAJOR_VERSION' --with-gettext=$PREFIX --with-system-zlib --disable-nls --enable-plugin --with-gxx-include-dir='$PREFIX/include/gcc$GCC_MAJOR_VERSION/c++/' --with-gmp='$PREFIX' --with-mpfr='$PREFIX' --with-mpc='$PREFIX' --with-isl='$PREFIX' --with-cloog='$PREFIX' --enable-cloog-backend=isl --disable-bootstrap --disable-isl-version-check"
local logfile="$DIR_LOGS/gcc-native.$ARCH.configure.log.txt"
echo "$cmd" > "$logfile"
echo "- gcc-${GCC_VERSION} (native) configure..."
eval "$cmd" >> "$logfile" 2>&1
if [[ $? -ne 0 ]]; then
echo "Error configuring GCC-${GCC_VERSION} ! Check the log $logfile" && exit 1
fi
cmd="make BOOT_CFLAGS='-O2 -I$PREFIX/include -I$PREFIX/sdk/include'"
local logfile="$DIR_LOGS/gcc-native.$ARCH.make.log.txt"
echo "$cmd" > "$logfile"
echo "- gcc-${GCC_VERSION} (native) make..."
eval "$cmd" >> "$logfile" 2>&1
if [[ $? -ne 0 ]]; then
echo "Error compiling GCC-${GCC_VERSION} ! Check the log $logfile" && exit 1
fi
cmd="make install-strip"
local logfile="$DIR_LOGS/gcc-native.$ARCH.install.log.txt"
echo "$cmd" > "$logfile"
echo "- gcc-${GCC_VERSION} (native) installing..."
eval "$cmd" >> "$logfile" 2>&1
if [[ $? -ne 0 ]]; then
echo "Error installing GCC-${GCC_VERSION} ! Check the log $logfile" && exit 1
fi
unset CFLAGS
unset CXXFLAGS
unset LDFLAGS
# Create a new and clean sdk directory
rm -rf "$TOOLCHAIN_SDK_DIR"
mkdir -p "$TOOLCHAIN_SDK_DIR/usr/lib"
# Copy header and library files needed to compile Basetools
echo "- Copying headers and library files..."
rsync -aH --copy-unsafe-links "$SDK/usr/include" "$TOOLCHAIN_SDK_DIR/usr/"
rsync -aH --copy-unsafe-links "$SDK/usr/lib"/libSystem* "$SDK/usr/lib"/crt* "$TOOLCHAIN_SDK_DIR/usr/lib/"
echo "- gcc-${GCC_VERSION} installed in $PREFIX"
rm -rf "$BUILD_DIR"
# Create a link for cc
ln -f "$PREFIX"/bin/gcc "$PREFIX"/bin/cc
fi
}
# Function: Compiling cross GCC compiler
CompileCrossGCC () {
[[ -x $PREFIX/cross/bin/$TARGET-gcc ]] && return 0
# Check GMP/MPFR/MPC
[[ ! -f $PREFIX/include/gmp.h ]] && echo "Error: ${GMP_VERSION} not installed, check logs" && exit
[[ ! -f $PREFIX/include/mpfr.h ]] && echo "Error: ${MPFR_VERSION} not installed, check logs" && exit
[[ ! -f $PREFIX/include/mpc.h ]] && echo "Error: ${MPC_VERSION} not installed, check logs" && exit
# Mount RamDisk
mountRamDisk
# Using our native GCC compiler
# pathmunge $PREFIX/bin
# Extract the tarball
local GCC_DIR=$(ExtractTarball "gcc-${GCC_VERSION}.tar.bz2")
cd ${GCC_DIR}
GCC_patch
local BUILD_DIR="${DIR_BUILD}/$ARCH-gcc-cross"
rm -rf "$BUILD_DIR"
mkdir -p "$BUILD_DIR" && cd "$BUILD_DIR"
export CFLAGS="-Os -I$PREFIX/include -I$PREFIX/sdk/include"
export CPPFLAGS="-Os -I$PREFIX/include -I$PREFIX/sdk/include"
export CXXFLAGS="-Os -I$PREFIX/include -I$PREFIX/sdk/include"
export CXXCPPFLAGS="-Os -I$PREFIX/include -I$PREFIX/sdk/include"
export LDFLAGS="-Os -L$PREFIX/lib -L$PREFIX/sdk/lib"
export BOOT_CFLAGS="-Os -I$PREFIX/include -I$PREFIX/sdk/include"
export BOOT_CPPFLAGS="-Os -I$PREFIX/include -I$PREFIX/sdk/include"
echo "- gcc-${GCC_VERSION} configure..."
"${GCC_DIR}"/configure --host=${BUILDARCH}-apple-darwin${BUILDREV} --build=${BUILDARCH}-apple-darwin${BUILDREV} --target=$TARGET --prefix="$PREFIX/cross" --with-sysroot="$PREFIX" --with-gmp="$PREFIX" --with-mpfr="$PREFIX" --with-mpc="$PREFIX" --with-isl="$PREFIX" --with-cloog="$PREFIX" --with-system-zlib --with-gnu-as --with-gnu-ld --with-newlib --disable-libssp --disable-nls --disable-werror --enable-languages=c,c++ --enable-cloog-backend=isl --enable-plugin --disable-isl-version-check > "$DIR_LOGS"/gcc.$ARCH.configure.log.txt 2> /dev/null
echo "- gcc-${GCC_VERSION} make..."
make all-gcc 1> /dev/null 2> $DIR_LOGS/gcc.$ARCH.make.log.txt
make install-gcc 1> $DIR_LOGS/gcc.$ARCH.install.log.txt 2> /dev/null
unset CFLAGS
unset CPPFLAGS
unset CXXFLAGS
unset CXXCPPFLAGS
unset LDFLAGS
unset BOOT_CFLAGS
unset BOOT_CPPFLAGS
[[ ! -x $PREFIX/cross/bin/$TARGET-gcc ]] && \
echo "Error: gcc-${GCC_VERSION} not installed, check logs in $DIR_LOGS" && exit 1
rm -rf "${BUILD_DIR}" "$GCC_DIR"
echo "- gcc-${GCC_VERSION} installed in $PREFIX/cross"
echo
}
export TARGET="x86_64-clover-linux-gnu"
export ARCH="x64"
export ABI_VER="64"
echo "- Building GCC toolchain for $ARCH"
CheckXCode || exit 1
DownloadSource || exit 1
startBuildEpoch=$(date -u "+%s")
CompileLibs || exit 1
GCC_native || exit 1
CompileBinutils || exit 1
CompileCrossGCC || exit 1
# Remove GCC source directory
[[ -d "$DIR_GCC" ]] && rm -rf "$DIR_GCC"
stopBuildEpoch=$(date -u "+%s")
buildTime=$(expr $stopBuildEpoch - $startBuildEpoch)
if [[ $buildTime -gt 59 ]]; then
timeToBuild=$(printf "%dm%ds" $((buildTime/60%60)) $((buildTime%60)))
else
timeToBuild=$(printf "%ds" $((buildTime)))
fi
printf -- "\n* %s %s %s\n" "GCC toolchain Build process took" "$timeToBuild" "to complete..."