Bug 1748056 - Build libc++ in clang for Windows. r=firefox-build-system-reviewers,andi

This brings parity with other platforms.

Differential Revision: https://phabricator.services.mozilla.com/D134911
This commit is contained in:
Mike Hommey
2021-12-31 08:00:01 +00:00
parent af867bfbba
commit 65fd541d6a

View File

@@ -703,7 +703,7 @@ if __name__ == "__main__":
"We only know how to do Release, Debug, RelWithDebInfo or "
"MinSizeRel builds"
)
build_libcxx = not is_windows()
build_libcxx = True
if "build_libcxx" in config:
build_libcxx = config["build_libcxx"]
if build_libcxx not in (True, False):