-
Notifications
You must be signed in to change notification settings - Fork 4
/
make-tool-chain.sh
executable file
·121 lines (93 loc) · 1.94 KB
/
make-tool-chain.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
#!/bin/bash
set -x
set -u
set -e
prefix=$(pwd)/_prefix
export PATH=${prefix}/bin:${PATH}
#
# Download
#
binutils_version=2.32
binutils_file_name=binutils-${binutils_version}
binutils_file=${binutils_file_name}.tar.xz
[ -f $binutils_file ] || wget https://mirror.koddos.net/gnu/binutils/${binutils_file}
gcc_version=9.2.0
gcc_file_name=gcc-${gcc_version}
gcc_file=${gcc_file_name}.tar.xz
[ -f ${gcc_file} ] || \
wget ftp://ftp.mirrorservice.org/sites/sourceware.org/pub/gcc/releases/gcc-${gcc_version}/${gcc_file}
newlib_version=3.1.0
newlib_file_name=newlib-${newlib_version}
newlib_file=${newlib_file_name}.tar.gz
[ -f ${newlib_file} ] || wget ftp://sourceware.org/pub/newlib/${newlib_file}
#
# Binutils
#
(
tar -xf ${binutils_file}
mkdir -p ${binutils_file_name}/_build
cd ${binutils_file_name}/_build
../configure \
--target=or1k-elf \
--prefix=$prefix \
--disable-nls \
--enable-multilib
make -j$(nproc)
make install
)
rm -rf ${binutils_file_name}/
#
# GCC Bootstrap
#
(
tar -xf ${gcc_file}
mkdir -p ${gcc_file_name}/_build_bootstrap
cd ${gcc_file_name}/_build_bootstrap
../configure \
--target=or1k-elf \
--prefix=$prefix \
--disable-nls \
--enable-multilib \
--enable-languages=c \
--with-newlib \
--without-headers \
--disable-shared
make -j$(nproc) all-gcc
make install-gcc
)
rm -rf ${gcc_file_name}/_build_bootstrap
#
# Newlib
#
(
tar -xf newlib-${newlib_version}.tar.gz
mkdir -p ${newlib_file_name}/_build
cd ${newlib_file_name}/_build
../configure \
--target=or1k-elf \
--prefix=$prefix \
--disable-nls \
--enable-multilib \
--disable-newlib-supplied-syscalls
make -j$(nproc)
make install
)
rm -rf ${newlib_file_name}
#
# GCC
#
(
mkdir -p ${gcc_file_name}/_build
cd ${gcc_file_name}/_build
../configure \
--target=or1k-elf \
--prefix=$prefix \
--disable-nls \
--enable-multilib \
--enable-languages=c,c++ \
--with-newlib \
--disable-shared
make -j$(nproc) all
make install
)
rm -rf ${gcc_file_name}