From 263a7716003b62531c084789c2f020e028692c34 Mon Sep 17 00:00:00 2001 From: Tobiasz Laskowski Date: Sat, 10 Jan 2026 15:21:53 +0000 Subject: [PATCH] Fix --no-output behaviour in android build Returning here means other architecture builds won't run. If we continue instead, all architecture builds will finish first before the function exits. --- tools/platforms/AndroidPlatform.hx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/platforms/AndroidPlatform.hx b/tools/platforms/AndroidPlatform.hx index d60835d812..47095c2280 100644 --- a/tools/platforms/AndroidPlatform.hx +++ b/tools/platforms/AndroidPlatform.hx @@ -208,7 +208,7 @@ class AndroidPlatform extends PlatformTarget System.runCommand("", "haxe", haxeParams); - if (noOutput) return; + if (noOutput) continue; CPPHelper.compile(project, targetDirectory + "/obj", cppParams);