1
Fork 0

Infer the default host target from the host toolchain if possible

This fixes ongoing issues where x.py will detect the wrong host triple
between MSVC and GNU.

- Add line to changelog
This commit is contained in:
Joshua Nelson 2020-10-28 23:09:41 -04:00
parent 07e968b640
commit 3863dee159
3 changed files with 20 additions and 3 deletions

View file

@ -266,7 +266,7 @@ config = {}
def build():
if 'build' in known_args:
return known_args['build'][-1][1]
return bootstrap.default_build_triple()
return bootstrap.default_build_triple(verbose=False)
def set(key, value):