-
Notifications
You must be signed in to change notification settings - Fork 620
Expand file tree
/
Copy pathtoolchain_build_temp_tools.sh
More file actions
executable file
·463 lines (412 loc) · 12.4 KB
/
toolchain_build_temp_tools.sh
File metadata and controls
executable file
·463 lines (412 loc) · 12.4 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
#!/bin/sh
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
set -e
set -x
if [[ -z "$LFS" ]]; then
echo "Must define LFS in environment" 1>&2
exit 1
fi
echo LFS root is: $LFS
cd $LFS/sources
touch $LFS/logs/temptoolchain/status_temp_toolchain_build_started
cat /home/lfs/.bashrc
LFS_TGT=$(uname -m)-lfs-linux-gnu
echo Binutils-2.41 - Pass 1
tar xf binutils-2.41.tar.xz
pushd binutils-2.41
mkdir -v build
cd build
../configure \
--prefix=$LFS/tools \
--with-sysroot=$LFS \
--target=$LFS_TGT \
--disable-nls \
--disable-werror \
--without-zstd \
--enable-gprofng=no
make -j$(nproc)
make install
popd
rm -rf binutils-2.41
touch $LFS/logs/temptoolchain/status_binutils_pass1_complete
echo GCC-13.2.0 - Pass 1
tar xf gcc-13.2.0.tar.xz
pushd gcc-13.2.0
tar xf ../mpfr-4.2.1.tar.xz
mv -v mpfr-4.2.1 mpfr
tar xf ../gmp-6.3.0.tar.xz
mv -v gmp-6.3.0 gmp
tar xf ../mpc-1.3.1.tar.gz
mv -v mpc-1.3.1 mpc
case $(uname -m) in
x86_64)
sed -e '/m64=/s/lib64/lib/' -i.orig gcc/config/i386/t-linux64
;;
aarch64)
sed -e '/mabi.lp64=/s/lib64/lib/' -i.orig gcc/config/aarch64/t-aarch64-linux
;;
esac
patch -Np1 -i /tools/CVE-2023-4039.patch
mkdir -v build
cd build
../configure \
--target=$LFS_TGT \
--prefix=$LFS/tools \
--with-glibc-version=2.38 \
--with-sysroot=$LFS \
--with-newlib \
--without-headers \
--enable-default-pie \
--enable-default-ssp \
--disable-nls \
--disable-shared \
--disable-multilib \
--disable-threads \
--disable-libatomic \
--disable-libgomp \
--disable-libquadmath \
--disable-libssp \
--disable-libvtv \
--disable-libstdcxx \
--enable-languages=c,c++
make -j$(nproc)
make install
cd ..
cat gcc/limitx.h gcc/glimits.h gcc/limity.h > \
`dirname $($LFS_TGT-gcc -print-libgcc-file-name)`/include/limits.h
popd
rm -rf gcc-13.2.0
touch $LFS/logs/temptoolchain/status_gcc_pass1_complete
KERNEL_VERSION="6.6.130.1"
echo Linux-${KERNEL_VERSION} API Headers
tar xf kernel-${KERNEL_VERSION}.tar.gz
pushd CBL-Mariner-Linux-Kernel-rolling-lts-mariner-3-${KERNEL_VERSION}
make mrproper
make headers
find usr/include -type f ! -name '*.h' -delete
mkdir -pv $LFS/usr/include
cp -rv usr/include/* $LFS/usr/include
popd
rm -rf CBL-Mariner-Linux-Kernel-rolling-lts-mariner-3-${KERNEL_VERSION}
touch $LFS/logs/temptoolchain/status_kernel_headers_complete
echo glibc-2.38
tar xf glibc-2.38.tar.xz
pushd glibc-2.38
case $(uname -m) in
x86_64) ln -sfv ../lib/ld-linux-x86-64.so.2 $LFS/lib64
ln -sfv ../lib/ld-linux-x86-64.so.2 $LFS/lib64/ld-lsb-x86-64.so.3
;;
esac
patch -Np1 -i ../glibc-2.38-fhs-1.patch
patch -Np1 -i ../glibc-2.38-memalign_fix-1.patch
mkdir -v build
cd build
echo "rootsbindir=/usr/sbin" > configparms
../configure \
--prefix=/usr \
--host=$LFS_TGT \
--build=$(../scripts/config.guess) \
--enable-kernel=4.14 \
--with-headers=$LFS/usr/include \
libc_cv_slibdir=/usr/lib
make -j$(nproc)
make DESTDIR=$LFS install
# Fix a hard coded path to the executable loader in the ldd script:
sed '/RTLDLIST=/s@/usr@@g' -i $LFS/usr/bin/ldd
popd
rm -rf glibc-2.38
touch $LFS/logs/temptoolchain/status_glibc_complete
# sanity check 1
sh /tools/sanity_check.sh "1"
echo Libstdc++ from GCC-13.2.0
tar xf gcc-13.2.0.tar.xz
pushd gcc-13.2.0
# TODO: patch -Np1 -i /tools/CVE-2023-4039.patch
mkdir -v build
cd build
../libstdc++-v3/configure \
--host=$LFS_TGT \
--build=$(../config.guess) \
--prefix=/usr \
--disable-multilib \
--disable-nls \
--disable-libstdcxx-pch \
--with-gxx-include-dir=/tools/$LFS_TGT/include/c++/13.2.0
make -j$(nproc)
make DESTDIR=$LFS install
rm -v $LFS/usr/lib/lib{stdc++,stdc++fs,supc++}.la
popd
rm -rf gcc-13.2.0
touch $LFS/logs/temptoolchain/status_libstdc++_complete
# Cross compile temp tools
echo M4-1.4.19
tar xf m4-1.4.19.tar.gz
pushd m4-1.4.19
./configure --prefix=/usr \
--host=$LFS_TGT \
--build=$(build-aux/config.guess)
make -j$(nproc)
make DESTDIR=$LFS install
popd
rm -rf m4-1.4.19
touch $LFS/logs/temptoolchain/status_m4_complete
echo Ncurses-6.4
tar xf ncurses-6.4.tar.gz
pushd ncurses-6.4
sed -i s/mawk// configure
mkdir build
pushd build
../configure
make -C include
make -C progs tic
popd
./configure --prefix=/usr \
--host=$LFS_TGT \
--build=$(./config.guess) \
--with-shared \
--with-manpage-format=normal \
--without-normal \
--with-cxx-shared \
--without-debug \
--without-ada \
--disable-stripping \
--enable-widec
make -j$(nproc)
make DESTDIR=$LFS install
make DESTDIR=$LFS TIC_PATH=$(pwd)/build/progs/tic install
echo "INPUT(-lncursesw)" > $LFS/usr/lib/libncurses.so
popd
rm -rf ncurses-6.4
touch $LFS/logs/temptoolchain/status_ncurses_complete
echo Bash-5.2.15
tar xf bash-5.2.15.tar.gz
pushd bash-5.2.15
./configure --prefix=/usr \
--build=$(sh support/config.guess) \
--host=$LFS_TGT \
--without-bash-malloc
make -j$(nproc)
make DESTDIR=$LFS install
ln -sv bash $LFS/bin/sh
popd
rm -rf bash-5.2.15
touch $LFS/logs/temptoolchain/status_bash_complete
echo Coreutils-9.4
tar xf coreutils-9.4.tar.xz
pushd coreutils-9.4
./configure --prefix=/usr \
--host=$LFS_TGT \
--build=$(build-aux/config.guess) \
--enable-install-program=hostname \
--enable-no-install-program=kill,uptime \
gl_cv_macro_MB_CUR_MAX_good=y
make -j$(nproc)
make DESTDIR=$LFS install
mv -v $LFS/usr/bin/chroot $LFS/usr/sbin
popd
rm -rf coreutils-9.4
touch $LFS/logs/temptoolchain/status_coreutils_complete
echo Diffutils-3.10
tar xf diffutils-3.10.tar.xz
pushd diffutils-3.10
./configure --prefix=/usr \
--host=$LFS_TGT \
--build=$(./build-aux/config.guess)
make -j$(nproc)
make DESTDIR=$LFS install
popd
rm -rf diffutils-3.10
touch $LFS/logs/temptoolchain/status_diffutils_complete
echo File-5.45
tar xf file-5.45.tar.gz
pushd file-5.45
mkdir build
pushd build
../configure --disable-bzlib \
--disable-libseccomp \
--disable-xzlib \
--disable-zlib
make
popd
./configure --prefix=/usr --host=$LFS_TGT --build=$(./config.guess)
make -j$(nproc) FILE_COMPILE=$(pwd)/build/src/file
make DESTDIR=$LFS install
rm -v $LFS/usr/lib/libmagic.la
popd
rm -rf file-5.45
touch $LFS/logs/temptoolchain/status_file_complete
echo Findutils-4.9.0
tar xf findutils-4.9.0.tar.xz
pushd findutils-4.9.0
./configure --prefix=/usr \
--localstatedir=/var/lib/locate \
--host=$LFS_TGT \
--build=$(build-aux/config.guess)
make -j$(nproc)
make DESTDIR=$LFS install
popd
rm -rf findutils-4.9.0
touch $LFS/logs/temptoolchain/status_findutils_complete
echo Gawk-5.2.2
tar xf gawk-5.2.2.tar.xz
pushd gawk-5.2.2
sed -i 's/extras//' Makefile.in
./configure --prefix=/usr \
--host=$LFS_TGT \
--build=$(build-aux/config.guess)
make -j$(nproc)
make DESTDIR=$LFS install
popd
rm -rf gawk-5.2.2
touch $LFS/logs/temptoolchain/status_gawk_complete
echo Grep-3.11
tar xf grep-3.11.tar.xz
pushd grep-3.11
./configure --prefix=/usr \
--host=$LFS_TGT \
--build=$(./build-aux/config.guess)
make -j$(nproc)
make DESTDIR=$LFS install
popd
rm -rf grep-3.11
touch $LFS/logs/temptoolchain/status_grep_complete
echo Gzip-1.13
tar xf gzip-1.13.tar.xz
pushd gzip-1.13
./configure --prefix=/usr --host=$LFS_TGT
make -j$(nproc)
make DESTDIR=$LFS install
popd
rm -rf gzip-1.13
touch $LFS/logs/temptoolchain/status_gzip_complete
echo Make-4.4.1
tar xf make-4.4.1.tar.gz
pushd make-4.4.1
./configure --prefix=/usr \
--without-guile \
--host=$LFS_TGT \
--build=$(build-aux/config.guess)
make -j$(nproc)
make DESTDIR=$LFS install
popd
rm -rf make-4.4.1
touch $LFS/logs/temptoolchain/status_make_complete
echo Patch-2.7.6
tar xf patch-2.7.6.tar.xz
pushd patch-2.7.6
./configure --prefix=/usr \
--host=$LFS_TGT \
--build=$(build-aux/config.guess)
make -j$(nproc)
make DESTDIR=$LFS install
popd
rm -rf patch-2.7.6
touch $LFS/logs/temptoolchain/status_patch_complete
echo Sed-4.9
tar xf sed-4.9.tar.xz
pushd sed-4.9
./configure --prefix=/usr \
--host=$LFS_TGT \
--build=$(./build-aux/config.guess)
make -j$(nproc)
make DESTDIR=$LFS install
popd
rm -rf sed-4.9
touch $LFS/logs/temptoolchain/status_sed_complete
echo Tar-1.35
tar xf tar-1.35.tar.xz
pushd tar-1.35
./configure --prefix=/usr \
--host=$LFS_TGT \
--build=$(build-aux/config.guess)
make -j$(nproc)
make DESTDIR=$LFS install
popd
rm -rf tar-1.35
touch $LFS/logs/temptoolchain/status_tar_complete
echo Xz-5.4.4
tar xf xz-5.4.4.tar.xz
pushd xz-5.4.4
./configure --prefix=/usr \
--host=$LFS_TGT \
--build=$(build-aux/config.guess) \
--disable-static \
--docdir=/usr/share/doc/xz-5.4.4
make -j$(nproc)
make DESTDIR=$LFS install
rm -v $LFS/usr/lib/liblzma.la
popd
rm -rf xz-5.4.4
touch $LFS/logs/temptoolchain/status_xz_complete
# Binutils pass 2
echo Binutils-2.41 - Pass 2
tar xf binutils-2.41.tar.xz
pushd binutils-2.41
sed '6009s/$add_dir//' -i ltmain.sh
mkdir -v build
cd build
../configure \
--prefix=/usr \
--build=$(../config.guess) \
--host=$LFS_TGT \
--disable-nls \
--enable-shared \
--enable-gprofng=no \
--disable-werror \
--enable-64-bit-bfd
make -j$(nproc)
make DESTDIR=$LFS install
rm -v $LFS/usr/lib/lib{bfd,ctf,ctf-nobfd,opcodes,sframe}.{a,la}
popd
rm -rf binutils-2.41
touch $LFS/logs/temptoolchain/status_binutils_pass2_complete
# Gcc pass 2
echo GCC-13.2.0 - Pass 2
tar xf gcc-13.2.0.tar.xz
pushd gcc-13.2.0
tar -xf ../mpfr-4.2.1.tar.xz
mv -v mpfr-4.2.1 mpfr
tar -xf ../gmp-6.3.0.tar.xz
mv -v gmp-6.3.0 gmp
tar -xf ../mpc-1.3.1.tar.gz
mv -v mpc-1.3.1 mpc
case $(uname -m) in
x86_64)
sed -e '/m64=/s/lib64/lib/' -i.orig gcc/config/i386/t-linux64
;;
aarch64)
sed -e '/mabi.lp64=/s/lib64/lib/' -i.orig gcc/config/aarch64/t-aarch64-linux
;;
esac
sed '/thread_header =/s/@.*@/gthr-posix.h/' \
-i libgcc/Makefile.in libstdc++-v3/include/Makefile.in
# TODO: patch -Np1 -i /tools/CVE-2023-4039.patch
mkdir -v build
cd build
../configure \
--build=$(../config.guess) \
--host=$LFS_TGT \
--target=$LFS_TGT \
LDFLAGS_FOR_TARGET=-L$PWD/$LFS_TGT/libgcc \
--prefix=/usr \
--with-build-sysroot=$LFS \
--enable-default-pie \
--enable-default-ssp \
--disable-nls \
--disable-multilib \
--disable-libatomic \
--disable-libgomp \
--disable-libquadmath \
--disable-libsanitizer \
--disable-libssp \
--disable-libvtv \
--enable-languages=c,c++
make -j$(nproc)
make DESTDIR=$LFS install
ln -sv gcc $LFS/usr/bin/cc
popd
rm -rf gcc-13.2.0
touch $LFS/logs/temptoolchain/status_gcc_pass2_complete
touch $LFS/logs/temptoolchain/status_temp_toolchain_complete
echo Done with script