We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3848abd commit 5b0a268Copy full SHA for 5b0a268
1 file changed
tests/runci/targets/Hl.hx
@@ -83,7 +83,8 @@ class Hl {
83
static function buildAndRunHlc(dir:String, filename:String, ?run) {
84
if (run == null) run = runCommand;
85
86
- runCommand("haxelib", ["run", "hashlink", "build", '$dir/$filename.c', "-D", "hlgen.makefile=make"]);
+ runCommand("haxelib", ["run", "hashlink", "build", '$dir/$filename.c', "-D", "hlgen.makefile=make"]
87
+ .concat(systemName == "Windows" ? ["-D", "hlgen.makefile.jumbo"] : []));
88
run('$dir/$filename', []);
89
90
// Run with MSBuild
0 commit comments