mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-15 18:32:22 -07:00
8 lines
465 B
Batchfile
8 lines
465 B
Batchfile
@echo off
|
|
:odin run . -vet
|
|
: -o:size
|
|
:odin build . -build-mode:shared -show-timings -o:minimal -no-bounds-check && python test.py
|
|
:odin build . -build-mode:shared -show-timings -o:size -no-bounds-check && python test.py
|
|
:odin build . -build-mode:shared -show-timings -o:size && python test.py
|
|
odin build . -build-mode:shared -show-timings -o:speed -no-bounds-check && python test.py
|
|
:odin build . -build-mode:shared -show-timings -o:speed && python test.py |