Skip to content

Commit

Permalink
build with CL with -j1 to avoid linker errors
Browse files Browse the repository at this point in the history
  • Loading branch information
daanx committed Feb 15, 2024
1 parent 8de6e23 commit e281b5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion util/bundle.kk
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ fun build-libraries(cc : string, usecl : bool, variant : variant, version : stri
if !install && usecl then
// also generate cl binaries on windows
val cloutputdir = get-output-dir("cl", variant, version)
val clcmd = [koka-run, "--cc=cl", "--outputdir=" ++ cloutputdir.show, extra, prog].join(" ")
val clcmd = [koka-run, "--cc=cl", "-j1", "--outputdir=" ++ cloutputdir.show, extra, prog].join(" ")
println("> " ++ clcmd)
run-system( clcmd )
()
Expand Down

0 comments on commit e281b5f

Please sign in to comment.