aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Gavin <danielgavin5@hotmail.com>2022-03-10 15:24:25 +0100
committerDaniel Gavin <danielgavin5@hotmail.com>2022-03-10 15:24:25 +0100
commit5889773224ec5fe7844b88276a080fb0bf7a36a5 (patch)
treec5bccff74c8a2bee2cfa4589ca3685f9ccd2fe87
parent9f1e92e8316ff0db92a3e72d0a21d1e7311171f3 (diff)
Don't bounds check at all in release
-rw-r--r--build.bat4
1 files changed, 2 insertions, 2 deletions
diff --git a/build.bat b/build.bat
index e609b73..4b09447 100644
--- a/build.bat
+++ b/build.bat
@@ -6,11 +6,11 @@ if "%1" == "CI" (
if %errorlevel% neq 0 exit 1
"Odin/odin.exe" build src\ -show-timings -collection:shared=src -out:ols -opt:2 -thread-count:1
) else if "%1" == "test" (
- odin test tests -collection:shared=src -debug -opt:0
+ odin test tests -collection:shared=src -opt:0
) else if "%1" == "single_test" (
odin test tests -collection:shared=src -test-name:%2
) else if "%1" == "debug" (
odin build src\ -show-timings -microarch:native -collection:shared=src -out:ols -opt:0 -debug
) else (
- odin build src\ -show-timings -microarch:native -collection:shared=src -out:ols -opt:2
+ odin build src\ -show-timings -microarch:native -collection:shared=src -out:ols -opt:2 -no-bounds-check
) \ No newline at end of file