diff options
| author | Daniel Gavin <danielgavin5@hotmail.com> | 2022-03-10 15:24:25 +0100 |
|---|---|---|
| committer | Daniel Gavin <danielgavin5@hotmail.com> | 2022-03-10 15:24:25 +0100 |
| commit | 5889773224ec5fe7844b88276a080fb0bf7a36a5 (patch) | |
| tree | c5bccff74c8a2bee2cfa4589ca3685f9ccd2fe87 /build.bat | |
| parent | 9f1e92e8316ff0db92a3e72d0a21d1e7311171f3 (diff) | |
Don't bounds check at all in release
Diffstat (limited to 'build.bat')
| -rw-r--r-- | build.bat | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |