We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8dbd0f1 commit 7f347fcCopy full SHA for 7f347fc
configure.py
@@ -20,9 +20,9 @@
20
original_argv = sys.argv[1:]
21
22
# gcc and g++ as defaults matches what GYP's Makefile generator does,
23
-# except on OS X.
24
-CC = os.environ.get('CC', 'cc' if sys.platform == 'darwin' else 'gcc')
25
-CXX = os.environ.get('CXX', 'c++' if sys.platform == 'darwin' else 'g++')
+# except on macOS and Windows.
+CC = os.environ.get('CC', 'cc' if sys.platform == 'darwin' else 'clang' if sys.platform == 'win32' else 'gcc')
+CXX = os.environ.get('CXX', 'c++' if sys.platform == 'darwin' else 'clang' if sys.platform == 'win32' else 'g++')
26
27
tools_path = Path('tools')
28
0 commit comments