From a8470ea78aaeab789e70d582d24fc106a4ca6dec Mon Sep 17 00:00:00 2001 From: IntegratedQuantum Date: Mon, 21 Jul 2025 18:37:48 +0200 Subject: [PATCH] Always compile with --prominent-compile-errors So far I couldn't see any downsides from doing this. --- debug_linux.sh | 2 +- debug_windows.bat | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/debug_linux.sh b/debug_linux.sh index a22ddf91..d5c8cf54 100755 --- a/debug_linux.sh +++ b/debug_linux.sh @@ -14,7 +14,7 @@ fi echo "Building Zig Cubyz ($@) from source. This may take a few minutes..." -./compiler/zig/zig build "$@" +./compiler/zig/zig build --prominent-compile-errors "$@" if [ $? != 0 ] then diff --git a/debug_windows.bat b/debug_windows.bat index 643f78a4..889e2b9d 100644 --- a/debug_windows.bat +++ b/debug_windows.bat @@ -10,7 +10,7 @@ if errorlevel 1 ( echo Building Zig Cubyz (%*^) from source. This may take a few minutes... -compiler\zig\zig build %* +compiler\zig\zig build --prominent-compile-errors %* if errorlevel 1 ( exit /b 1