diff options
| author | DanielGavin <danielgavin5@hotmail.com> | 2024-10-03 21:30:40 +0200 |
|---|---|---|
| committer | DanielGavin <danielgavin5@hotmail.com> | 2024-10-03 21:30:40 +0200 |
| commit | afe0c725e0bd3a0b79adddf3c997391a5088ab35 (patch) | |
| tree | 98e6573746639cbe4edbad3364bb58931457e0e0 /build.bat | |
| parent | 4b8678b8f6b54e3c8dbbbd943228e6b9c919f330 (diff) | |
Fix issues with call expression inside another generic call expression.
Diffstat (limited to 'build.bat')
| -rw-r--r-- | build.bat | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -2,11 +2,11 @@ setlocal enabledelayedexpansion
if "%1" == "test" (
- odin test tests -collection:src=src -debug -define:ODIN_TEST_THREADS=1
+ odin test tests -collection:src=src -debug -define:ODIN_TEST_THREADS=1 -define:ODIN_TEST_TRACK_MEMORY=false
) else if "%1" == "single_test" (
- odin test tests -collection:src=src -define:ODIN_TEST_NAMES=%2 -debug
+ odin test tests -collection:src=src -define:ODIN_TEST_NAMES=%2 -define:ODIN_TEST_TRACK_MEMORY=false -debug
) else if "%1" == "debug" (
- odin build src\ -show-timings -collection:src=src -microarch:native -out:ols.exe -o:minimal -no-bounds-check -use-separate-modules -debug
+ odin build src\ -show-timings -microarch:native -collection:src=src -out:ols.exe -o:minimal -no-bounds-check -use-separate-modules -debug
) else (
odin build src\ -show-timings -microarch:native -collection:src=src -out:ols.exe -o:speed -no-bounds-check
)
|