From d35034b21bfdcbdb21853340ff983e908ada101f Mon Sep 17 00:00:00 2001 From: Jon Turney Date: Tue, 23 Oct 2018 16:14:40 +0100 Subject: 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. --- run_unittests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'run_unittests.py') 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() -- cgit v1.1