diff options
author | Jon Turney <jon.turney@dronecode.org.uk> | 2018-10-23 16:14:40 +0100 |
---|---|---|
committer | Jon Turney <jon.turney@dronecode.org.uk> | 2018-11-04 15:42:06 +0000 |
commit | d35034b21bfdcbdb21853340ff983e908ada101f (patch) | |
tree | fd117c606d782b8babef82cdf9a1639fbd3623af /run_unittests.py | |
parent | 198e8691625419b50000c5825209843184dd2441 (diff) | |
download | meson-d35034b21bfdcbdb21853340ff983e908ada101f.zip meson-d35034b21bfdcbdb21853340ff983e908ada101f.tar.gz meson-d35034b21bfdcbdb21853340ff983e908ada101f.tar.bz2 |
Use 'rc' resource compiler with clang-cl toolchain
The LLVM toolchain doesn't come with a Windows resource compiler at
the moment. Use 'rc' from the Windows SDK.
Diffstat (limited to 'run_unittests.py')
-rwxr-xr-x | run_unittests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/run_unittests.py b/run_unittests.py index 84dcd36..474b87a 100755 --- a/run_unittests.py +++ b/run_unittests.py @@ -3070,7 +3070,7 @@ class WindowsTests(BasePlatformTests): # resource compiler depfile generation is not yet implemented for msvc env = get_fake_env(testdir, self.builddir, self.prefix) - depfile_works = env.detect_c_compiler(False).get_id() != 'msvc' + depfile_works = env.detect_c_compiler(False).get_id() not in ['msvc', 'clang-cl'] self.init(testdir) self.build() |