@@ -148,14 +148,6 @@ done
148
148
# Initialize GCC_CONF_ARGS
149
149
GCC_CONF_ARGS=()
150
150
151
- ## If we're doing a bootstrapping build (GCC does not, GCCBootstrapMacOS does)
152
- # add in the appropriate configure arguments:
153
- if [[ "${GCC_ENABLE_BOOTSTRAP:-false}" == "true" ]]; then
154
- GCC_CONF_ARGS+=( --enable-bootstrap )
155
- else
156
- GCC_CONF_ARGS+=( --disable-bootstrap )
157
- fi
158
-
159
151
## Architecture-dependent arguments
160
152
# Choose a default arch, and on arm*hf targets, pass `--with-float=hard` explicitly
161
153
if [[ "${target}" == arm*hf ]]; then
@@ -243,10 +235,10 @@ for TOOL in CC CPP CXX AS AR NM LD RANLIB; do
243
235
export ${TOOL}_FOR_TARGET=${!TARGET_NAME}
244
236
245
237
# These target tool autodetections do not work
246
- # export ac_cv_path_${TOOL}_FOR_TARGET=${!TARGET_NAME}
238
+ export ac_cv_path_${TOOL}_FOR_TARGET=${!TARGET_NAME}
247
239
done
248
240
249
- # libcc1 fails with an error about `-rdynamic` unless we defien this
241
+ # libcc1 fails with an error about `-rdynamic` unless we define this
250
242
export gcc_cv_nm="${NM_FOR_TARGET}"
251
243
252
244
# Make sure the tools that GCC itself wants to use ("ld", "as", "dysmutil") are available
@@ -269,6 +261,7 @@ $WORKSPACE/srcdir/gcc-*/configure \
269
261
--host="${host}" \
270
262
--target="${target}" \
271
263
--disable-multilib \
264
+ --disable-bootstrap \
272
265
--disable-werror \
273
266
--enable-threads=posix \
274
267
--enable-languages=c,c++ \
0 commit comments