Skip to content

Commit

Permalink
Attempt to fix recent llvm-mingw build failure by reduce parallel job…
Browse files Browse the repository at this point in the history
… count.
  • Loading branch information
zufuliu committed Dec 9, 2023
1 parent 4474739 commit 4c6b7be
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build/mingw/build.bat
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
SETLOCAL ENABLEEXTENSIONS
CD /D %~dp0

SET "JOBS=-j%NUMBER_OF_PROCESSORS%"
SET /A "JOB_COUNT=(%NUMBER_OF_PROCESSORS% - 1) | 1"
SET "JOBS=-j%JOB_COUNT%"
SET "CLANG="
SET "UCRT="
SET "COMPILER=x86_64"
Expand Down

0 comments on commit 4c6b7be

Please sign in to comment.