aboutsummaryrefslogtreecommitdiff
path: root/build.bat
diff options
context:
space:
mode:
authorDanielGavin <danielgavin5@hotmail.com>2024-10-03 21:30:40 +0200
committerDanielGavin <danielgavin5@hotmail.com>2024-10-03 21:30:40 +0200
commitafe0c725e0bd3a0b79adddf3c997391a5088ab35 (patch)
tree98e6573746639cbe4edbad3364bb58931457e0e0 /build.bat
parent4b8678b8f6b54e3c8dbbbd943228e6b9c919f330 (diff)
Fix issues with call expression inside another generic call expression.
Diffstat (limited to 'build.bat')
-rw-r--r--build.bat6
1 files changed, 3 insertions, 3 deletions
diff --git a/build.bat b/build.bat
index ce3da49..e29dde3 100644
--- a/build.bat
+++ b/build.bat
@@ -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
)