gcc: Explicitly disable bootstrapping (#23360)
We need to explicitly disable bootstrapping when `~bootstrap` since GCC bootstraps by default.
This commit is contained in:
parent
bdfdba7d73
commit
3729fcdb4b
1 changed files with 4 additions and 0 deletions
|
@ -509,6 +509,10 @@ def configure_args(self):
|
|||
options.extend([
|
||||
'--enable-bootstrap',
|
||||
])
|
||||
else:
|
||||
options.extend([
|
||||
'--disable-bootstrap',
|
||||
])
|
||||
|
||||
# Configure include and lib directories explicitly for these
|
||||
# dependencies since the short GCC option assumes that libraries
|
||||
|
|
Loading…
Reference in a new issue