From 36230869124c4a3c58e9bebc26d4184157dd3497 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20K=C3=BChnel?= Date: Fri, 13 Dec 2019 15:14:48 +0000 Subject: [PATCH] removing wrapper code --- scripts/run_cmake.ps1 | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/run_cmake.ps1 b/scripts/run_cmake.ps1 index 1d7018f..e61e9cf 100644 --- a/scripts/run_cmake.ps1 +++ b/scripts/run_cmake.ps1 @@ -20,7 +20,9 @@ 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 ..\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} -ErrorAction Stop +# Invoke-Call -ScriptBlock { +cmake ..\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 +#} -ErrorAction Stop # LLVM_ENABLE_DIA_SDK=OFF is a workaround to make the tests pass. # see https://bugs.llvm.org/show_bug.cgi?id=44151