Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions llvm/utils/release/build_llvm_release.bat
Original file line number Diff line number Diff line change
Expand Up @@ -169,9 +169,9 @@ set common_cmake_flags=^

if "%force-msvc%" == "" (
where /q clang-cl
if errorlevel 0 (
if %errorlevel% EQU 0 (
where /q lld-link
if errorlevel 0 (
if %errorlevel% EQU 0 (
set common_compiler_flags=%common_compiler_flags% -fuse-ld=lld

set common_cmake_flags=%common_cmake_flags%^
Expand Down