From 4ca85190ea203151904c5ae926c306b2b33832c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20K=C3=BChnel?= Date: Wed, 11 Dec 2019 16:48:16 +0000 Subject: [PATCH] merged command into one line to see if that was the issue --- scripts/run_cmake.ps1 | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/scripts/run_cmake.ps1 b/scripts/run_cmake.ps1 index 83cd730..5704923 100644 --- a/scripts/run_cmake.ps1 +++ b/scripts/run_cmake.ps1 @@ -21,12 +21,7 @@ Push-Location build Invoke-CmdScript "C:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\Common7\Tools\VsDevCmd.bat" -arch=amd64 -host_arch=amd64 Invoke-Call -ScriptBlock { - cmake.exe ..\llvm -G Ninja -DCMAKE_BUILD_TYPE=Release ` - -D LLVM_ENABLE_PROJECTS="clang;clang-tools-extra" ` - -D LLVM_ENABLE_ASSERTIONS=ON ` - -DLLVM_LIT_ARGS="-v --xunit-xml-output test-results.xml" ` - -D LLVM_ENABLE_DIA_SDK=OFF ` - --trace --debug-output + cmake.exe ..\llvm -G Ninja -DCMAKE_BUILD_TYPE=Release -D LLVM_ENABLE_PROJECTS="clang;clang-tools-extra" -D LLVM_ENABLE_ASSERTIONS=ON -DLLVM_LIT_ARGS="-v --xunit-xml-output test-results.xml" -D LLVM_ENABLE_DIA_SDK=OFF } -ErrorAction Stop # LLVM_ENABLE_DIA_SDK=OFF is a workaround to make the tests pass.