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.
setup.py
1 parent 4c3ce8a commit 91b9d48Copy full SHA for 91b9d48
setup.py
@@ -61,8 +61,8 @@ def build_extension(self, ext: CMakeExtension) -> None:
61
# auxiliary "native" libs
62
63
debug = int(os.environ.get("DEBUG", 0)) if self.debug is None else self.debug
64
- cxx_compiler = os.environ.get("CMAKE_CXX_COMPILER", "g++")
65
- c_compiler = os.environ.get("CMAKE_C_COMPILER", "gcc")
+ cxx_compiler = os.environ.get("CMAKE_CXX_COMPILER", "clang++")
+ c_compiler = os.environ.get("CMAKE_C_COMPILER", "clang")
66
cmake_options = os.environ.get("CMAKE_OPTIONS", "")
67
cfg = "Debug" if debug else "Release"
68
0 commit comments