aboutsummaryrefslogtreecommitdiffstats
path: root/python/servo/util.py
diff options
context:
space:
mode:
authorSimon Sapin <simon.sapin@exyr.org>2017-02-15 14:55:44 +0100
committerSimon Sapin <simon.sapin@exyr.org>2017-02-16 08:38:14 +0100
commitbd8ec03740408d97263e479c7d37dee6fe339a8f (patch)
treee7b45c4420c678a5a9469652440f0c41319d9646 /python/servo/util.py
parent4f10a0f2e1ae545649957cc7e305c8cb81312759 (diff)
downloadservo-bd8ec03740408d97263e479c7d37dee6fe339a8f.tar.gz
servo-bd8ec03740408d97263e479c7d37dee6fe339a8f.zip
Disable LLVM assertions by default, on supported platforms.
But keep them on linux-dev CI.
Diffstat (limited to 'python/servo/util.py')
-rw-r--r--python/servo/util.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/python/servo/util.py b/python/servo/util.py
index 03f993b3bf0..77fba165446 100644
--- a/python/servo/util.py
+++ b/python/servo/util.py
@@ -20,7 +20,7 @@ import zipfile
import urllib2
-def host_triple():
+def host_platform():
os_type = platform.system().lower()
if os_type == "linux":
os_type = "unknown-linux-gnu"
@@ -42,7 +42,11 @@ def host_triple():
os_type = "unknown-freebsd"
else:
os_type = "unknown"
+ return os_type
+
+def host_triple():
+ os_type = host_platform()
cpu_type = platform.machine().lower()
if os_type.endswith("-msvc"):
# vcvars*.bat should set it properly