aboutsummaryrefslogtreecommitdiffstats
path: root/python/servo/bootstrap_commands.py
diff options
context:
space:
mode:
authorSimon Sapin <simon.sapin@exyr.org>2015-12-30 12:06:54 +0000
committerSimon Sapin <simon.sapin@exyr.org>2015-12-30 12:06:54 +0000
commit856eea3a0e773f8ebb1a3b7ccdd16e3f04d75e4d (patch)
treea82140ae3e368b63a38f7813c6f7254caa34dab5 /python/servo/bootstrap_commands.py
parent3f407ea3d620e381b3adf6352cc09f9912db26b3 (diff)
downloadservo-856eea3a0e773f8ebb1a3b7ccdd16e3f04d75e4d.tar.gz
servo-856eea3a0e773f8ebb1a3b7ccdd16e3f04d75e4d.zip
Remove "Servo does not bootstrap 32bit snapshots of Rust" message
We now use rust-lang.org nightly builds rather than our own snapshots.
Diffstat (limited to 'python/servo/bootstrap_commands.py')
-rw-r--r--python/servo/bootstrap_commands.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/python/servo/bootstrap_commands.py b/python/servo/bootstrap_commands.py
index b6c9143f5a8..e35f0b11790 100644
--- a/python/servo/bootstrap_commands.py
+++ b/python/servo/bootstrap_commands.py
@@ -62,13 +62,6 @@ def download(desc, src, writer):
print()
except urllib2.HTTPError, e:
print("Download failed (%d): %s - %s" % (e.code, e.reason, src))
-
- cpu_type = subprocess.check_output(["uname", "-m"]).strip().lower()
- if e.code == 404 and cpu_type in ["i386", "i486", "i686", "i768", "x86"]:
- # i686
- print("Note: Servo does not currently bootstrap 32bit snapshots of Rust")
- print("See https://github.com/servo/servo/issues/3899")
-
sys.exit(1)