Skip to content

Commit f92150a

Browse files
forgot msvc
1 parent 01af99d commit f92150a

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

scripts/tools.py

+8
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,14 @@ def __init__(self):
3232
self.cxx_compiler = "c++"
3333
self.cc_compiler_package = ""
3434
self.cxx_compiler_package = ""
35+
elif self.triple == "windows-x64-msvc":
36+
self.compiler_id = "msvc"
37+
self.cc_compiler = ""
38+
self.cxx_compiler = ""
39+
self.cc_compiler_package = ""
40+
self.cxx_compiler_package = ""
41+
else:
42+
raise LookupError(f"Triple {self.triple} is not known to the system")
3543

3644
self.repo_dir = os.getcwd()
3745
self.working_dir = os.path.join(self.repo_dir, 'temp', self.name)

0 commit comments

Comments
 (0)