Skip to content

Commit 5b0a268

Browse files
committed
[tests] Use jumbo build for hlc with mingw make
Mingw make is much faster with the jumbo build.
1 parent 3848abd commit 5b0a268

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

tests/runci/targets/Hl.hx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,8 @@ class Hl {
8383
static function buildAndRunHlc(dir:String, filename:String, ?run) {
8484
if (run == null) run = runCommand;
8585

86-
runCommand("haxelib", ["run", "hashlink", "build", '$dir/$filename.c', "-D", "hlgen.makefile=make"]);
86+
runCommand("haxelib", ["run", "hashlink", "build", '$dir/$filename.c', "-D", "hlgen.makefile=make"]
87+
.concat(systemName == "Windows" ? ["-D", "hlgen.makefile.jumbo"] : []));
8788
run('$dir/$filename', []);
8889

8990
// Run with MSBuild

0 commit comments

Comments
 (0)