1
Fork 0

Rollup merge of #113683 - ozkanonur:polished, r=jyn514

remove outdated `FIXME`s in bootstrap internals

self-explanatory
This commit is contained in:
Matthias Krüger 2023-07-15 19:42:52 +02:00 committed by GitHub
commit d0ef799156
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 13 deletions

View file

@ -914,12 +914,7 @@ class RustBuild(object):
# preserve existing RUSTFLAGS
env.setdefault("RUSTFLAGS", "")
# we need to explicitly add +xgot here so that we can successfully bootstrap
# a usable stage1 compiler
# FIXME: remove this if condition on the next bootstrap bump
# cfg(bootstrap)
if self.build_triple().startswith('mips'):
env["RUSTFLAGS"] += " -Ctarget-feature=+xgot"
target_features = []
if self.get_toml("crt-static", build_section) == "true":
target_features += ["+crt-static"]