Skip to content
This repository was archived by the owner on Nov 21, 2018. It is now read-only.

Commit caedc40

Browse files
committed
Bootstrap MSVC from itself
1 parent 5d057e7 commit caedc40

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

master/master.cfg

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -223,10 +223,6 @@ def all_platform_hosts(platform):
223223
def auto_platform_host(p):
224224
if "-all" in p:
225225
return "all"
226-
# We are temporarily bootstrapping the MSVC build off a GNU build
227-
elif "msvc" in p:
228-
gnu = p.replace("msvc", "gnu")
229-
return [auto_platform_triple(p), auto_platform_triple(gnu)]
230226
else:
231227
return [auto_platform_triple(p)]
232228

@@ -266,7 +262,7 @@ def auto_platform_triple(p):
266262
return "x86_64-unknown-bitrig"
267263

268264
def auto_platform_build(p):
269-
return auto_platform_triple(p.replace("msvc", "gnu"))
265+
return auto_platform_triple(p)
270266

271267

272268
####### BUILDSLAVES

0 commit comments

Comments
 (0)