aboutsummaryrefslogtreecommitdiff
path: root/ci
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2019-10-16 21:16:06 -0400
committerAndrew Kelley <andrew@ziglang.org>2019-10-16 21:16:06 -0400
commit93295f3b134e58477e4f28be378123ceb6d1ddfe (patch)
tree0e1bef2e7367dff4d90d83ddfe41dd03a1edbf73 /ci
parentc03dc6665f55bbb16a62a74eae6b258863ac0a05 (diff)
downloadzig-93295f3b134e58477e4f28be378123ceb6d1ddfe.tar.gz
zig-93295f3b134e58477e4f28be378123ceb6d1ddfe.zip
remove -DZIG_FORCE_EXTERNAL_LLD=ON
Looks like the patch we need is in llvm trunk, not llvm 9.
Diffstat (limited to 'ci')
-rw-r--r--ci/azure/windows_script.bat2
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/azure/windows_script.bat b/ci/azure/windows_script.bat
index 160d3c63b5..d3437e885b 100644
--- a/ci/azure/windows_script.bat
+++ b/ci/azure/windows_script.bat
@@ -17,7 +17,7 @@ call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliar
mkdir %ZIGBUILDDIR%
cd %ZIGBUILDDIR%
-cmake.exe .. -Thost=x64 -G"Visual Studio 16 2019" -A x64 "-DCMAKE_INSTALL_PREFIX=%ZIGINSTALLDIR%" "-DCMAKE_PREFIX_PATH=%ZIGPREFIXPATH%" -DCMAKE_BUILD_TYPE=Release -DZIG_FORCE_EXTERNAL_LLD=ON || exit /b
+cmake.exe .. -Thost=x64 -G"Visual Studio 16 2019" -A x64 "-DCMAKE_INSTALL_PREFIX=%ZIGINSTALLDIR%" "-DCMAKE_PREFIX_PATH=%ZIGPREFIXPATH%" -DCMAKE_BUILD_TYPE=Release || exit /b
msbuild /maxcpucount /p:Configuration=Release INSTALL.vcxproj || exit /b
"%ZIGINSTALLDIR%\bin\zig.exe" build test || exit /b