Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mach Bootstrap: Support for more platforms #13226

Closed
wants to merge 7 commits into from

Check for missing packages on supported platforms

  • Loading branch information
UK992 committed Sep 11, 2016
commit 48ac894a4464cb50330574caf4e16a935ef01606
@@ -518,9 +518,11 @@ def ensure_bootstrapped(self, target=None):
target_path = path.join(base_target_path, target_platform)
target_exists = path.exists(target_path)

# Always check if all needed MSVC dependencies are installed
if "msvc" in target_platform:
# Check for missing packages on supported platforms
try:
Registrar.dispatch("bootstrap", context=self.context)
except:
pass

if not (self.config['tools']['system-rust'] or (rustc_binary_exists and target_exists)):
print("looking for rustc at %s" % (rustc_path))
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.