-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgentoolchain.sh
executable file
·239 lines (214 loc) · 5.81 KB
/
gentoolchain.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
#!/usr/bin/env bash
# Configuration:
export target=${target:-arm-none-eabi}
export prefix=${prefix:-"./install/${target}"} # Version prefix?
export version=${version:-$(date -I | sed s/-//g)}
export bugurl=${bugurl:-""}
# CPU multilib profile associated with target. Check gcc/config/**/t-* files.
export profile=${profile:-rmprofile}
export BASE_COMMON_FLAGS="-O2 -pipe"
export BASE_CFLAGS="${BASE_COMMON_FLAGS}"
export BASE_CXXFLAGS="${BASE_COMMON_FLAGS}"
export BASE_LDFLAGS=""
############################################################################
set -e
# Has to run before readlink, readlink only adds at most one level.
# Redo directory creation?
mkdir -p "${prefix}"
mkdir -p "./build"
export TARGET=${target}
export PREFIX=$(readlink -f "${prefix}")
export PATH="${PREFIX}/bin:${PATH}"
export distdir=$(readlink -f "./distfiles")
export blddir=$(readlink -f "./build/${target}")
export bindir=$(readlink -f "${prefix}/bin")
if [[ ! -d ${distdir} ]]; then mkdir -p "${distdir}"; fi
if [[ ! -d ${blddir} ]]; then mkdir -p "${blddir}"; fi
if [[ ! -d ${bindir} ]]; then mkdir -p "${bindir}"; fi
# Bindir redundant? Creates prefix dir, but had to create it above.
fetch_binutils() {
if [[ ! -d "${distdir}/binutils-gdb" ]]; then
pushd "${distdir}" # TODO: Verify.
git clone git://sourceware.org/git/binutils-gdb.git
popd
else
pushd "${distdir}/binutils-gdb" # TODO: Verify.
git checkout master
git pull
popd
fi
pushd "${distdir}/binutils-gdb"
git checkout gdb-9.1-release
popd
}
fetch_gcc() {
if [[ ! -d "${distdir}/gcc" ]]; then
pushd "${distdir}" # TODO: Verify.
git clone git://gcc.gnu.org/git/gcc.git
popd
else
pushd "${distdir}/gcc" # TODO: Verify.
git checkout master
git pull
popd
fi
pushd "${distdir}/gcc"
git checkout releases/gcc-9.2.0
popd
}
fetch_newlib() {
if [[ ! -d "${distdir}/newlib-cygwin" ]]; then
pushd "${distdir}" # TODO: Verify.
git clone git://sourceware.org/git/newlib-cygwin.git
popd
else
pushd "${distdir}/newlib-cygwin" # TODO: Verify.
git checkout master
git pull
popd
fi
pushd "${distdir}/newlib-cygwin"
git checkout newlib-3.3.0
popd
}
fetch_picolibc() {
if [[ ! -d "${distdir}/picolibc" ]]; then
pushd "${distdir}" # TODO: Verify.
git clone https://github.com/keith-packard/picolibc.git
popd
else
pushd "${distdir}/picolibc" # TODO: Verify.
git checkout master
git pull
popd
fi
pushd "${distdir}/picolibc"
# git checkout ___ YOLO
popd
}
build_binutils() {
mkdir -p "${blddir}/binutils-gdb"
pushd "${blddir}/binutils-gdb"
"${distdir}"/binutils-gdb/configure \
--build="$(gcc -dumpmachine)" --host="$(gcc -dumpmachine)" \
--target="${TARGET}" --prefix="${PREFIX}" \
--with-multilib-list="${profile}" \
--with-sysroot="${prefix}" \
--disable-nls \
--enable-interwork \
--enable-multilib \
--with-gnu-as \
--with-gnu-ld
make -j4 all
make install
popd
}
build_gcc_bootstrap() {
mkdir -p "${blddir}/gcc"
pushd "${blddir}/gcc"
export CFLAGS_FOR_TARGET="-O2 -pipe"
export CXXFLAGS_FOR_TARGET="-O2 -pipe"
"${distdir}"/gcc/configure \
--with-pkgversion="${version}" \
--with-bugurl="${bugurl}" \
--build="$(gcc -dumpmachine)" \
--host="$(gcc -dumpmachine)" \
--target="${target}" \
--prefix="${PREFIX}" \
--with-gnu-as \
--with-gnu-ld \
--with-multilib-profile=rmprofile \
--disable-threads \
--disable-tls \
--disable-tm-clone-registry \
--enable-languages=c \
--enable-interwork \
--disable-libsanitizer \
--disable-libssp \
--disable-libquadmath \
--disable-libgomp \
--disable-libvtv \
--disable-nls \
--with-sysroot="${prefix}" \
--without-headers \
--with-newlib
make -j4 all-gcc
make install-gcc
#export CPPFLAGS="-I${prefix}/include ${BASE_CXXFLAGS} ${CPPFLAGS-}"
#export LDFLAGS="-L${prefix}/lib ${BASE_LDFLAGS} ${LDFLAGS-}"
#"${distdir}"/gcc/configure \
# --build="$(gcc -dumpmachine)" --host="$(gcc -dumpmachine)" \
# --target="${TARGET}" --prefix="${PREFIX}" \
# --with-multilib-list="${profile}" \
# --with-sysroot="${PREFIX}" \
# --with-system-zlib \
# --with-newlib \
# --with-gnu-as \
# --with-gnu-ld \
# --enable-languages="c" \
# --enable-multilib \
# --enable-interwork \
# --without-headers \
# --disable-nls \
# --disable-decimal-float \
# --disable-libffi \
# --disable-libgomp \
# --disable-libmudflap \
# --disable-libssp \
# --disable-libstdcxx-pch \
# --disable-threads \
# --disable-tls \
# --disable-shared
#make -j4 all-gcc
#make install-gcc
popd
}
build_newlib() {
mkdir -p "${blddir}/newlib-cygwin"
pushd "${blddir}/newlib-cygwin"
export CFLAGS_FOR_TARGET="-O2 -g -pipe"
export CXXFLAGS_FOR_TARGET="-O2 -g -pipe"
export CPPFLAGS="-I${prefix}/include ${BASE_CXXFLAGS} ${CPPFLAGS-}"
export LDFLAGS="-L${prefix}/lib ${BASE_LDFLAGS} ${LDFLAGS-}"
"${distdir}"/newlib-cygwin/configure \
--target="${TARGET}" --prefix="${PREFIX}" \
--with-multilib-list="${profile}" \
--disable-newlib-supplied-syscalls \
--enable-interwork \
--enable-newlib-nano-malloc \
--enable-newlib-io-c99-formats \
--enable-newlib-io-long-long \
--enable-multilib \
--disable-newlib-atexit-dynamic-alloc \
--disable-nls \
--with-gnu-as \
--with-gnu-ld
make -j4 all
make install
popd
}
build_picolibc() {
mkdir -p "${blddir}/picolibc"
pushd "${blddir}/picolibc"
# Premade arm-none-eabi target.
"${distdir}"/picolibc/do-arm-configure
ninja -j4
}
# Source the configuration.
source "./config/${target}.sh"
# Steps to run, in sequence, listed as arguments terminated with --.
steps=()
for arg in "${@}"; do
if [[ "${arg}" =~ '--' ]]; then break; fi
steps+=("$arg")
done
(if [[ ${#steps[@]} -eq 0 ]]; then
# No steps selected, run them in alphanumeric order.
declare -F | awk '{ print $3; }'
else
# Steps selected.
(IFS=$'\n'; echo "${steps[*]}")
fi) | while read -r step; do
# TODO: Look for partial step names among declaration list and run them.
"$step"
done