diff options
| author | Alejandro Sior <aho@sior.be> | 2022-08-07 13:20:35 +0200 |
|---|---|---|
| committer | Alejandro Sior <aho@sior.be> | 2022-08-07 13:20:35 +0200 |
| commit | 8aab5f99900eb6a655731cb4e7f4e9c53156cb92 (patch) | |
| tree | ed1ebb7f1c7b414307d5f039ef37d645c33ab8c6 /cook.py | |
| parent | 15d0899caddfbd711d841d182b850a2b26c51e53 (diff) | |
cook/msvc: fix msvc toolchain from test
Diffstat (limited to 'cook.py')
| -rwxr-xr-x | cook.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -375,7 +375,7 @@ def MSVCStyleToolchain(name, gccname, arname, ldname, suffix="", c_args=[], ld_a return cc, exe, lib, shlib def MSVCToolchain(suffix="", c_args=[], ld_args=[]): - return MSVCStyleToolchain("msvc", "clp", "lib", "link", suffix, c_args, ld_args) + return MSVCStyleToolchain("msvc", "cl", "lib", "link", suffix, c_args, ld_args) def ClangClToolchain(suffix="", c_args=[], ld_args=[]): # This toolchain depends on lib.exe shipped by microsoft. Is there a llvm way? |
