aboutsummaryrefslogtreecommitdiff
path: root/build.bat
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2020-03-08 17:44:08 +0000
committergingerBill <bill@gingerbill.org>2020-03-08 17:44:08 +0000
commitdae817e5ab786180ebcd284fb27195db5ae5ec00 (patch)
tree5986d92c1d03d465a348c8a50da42c811f1c86d5 /build.bat
parent28502ba53b32a0e5eb9aa7d8c41424fa090ff7ef (diff)
Integrate linker code with the new LLVM API backend
Diffstat (limited to 'build.bat')
-rw-r--r--build.bat8
1 files changed, 4 insertions, 4 deletions
diff --git a/build.bat b/build.bat
index 436e7852f..5018eb06e 100644
--- a/build.bat
+++ b/build.bat
@@ -49,14 +49,14 @@ del *.ilk > NUL 2> NUL
cl %compiler_settings% "src\main.cpp" ^
/link %linker_settings% -OUT:%exe_name% ^
- && odin build examples/demo/demo.odin -llvm-api -show-more-timings
+ && odin run examples/demo/demo.odin -llvm-api
if %errorlevel% neq 0 (
goto end_of_build
)
-link demo.obj kernel32.lib user32.lib /OUT:llvm_demo.exe ^
- /nologo /incremental:no /opt:ref /subsystem:CONSOLE /defaultlib:libcmt -debug
- rem && llvm_demo
+rem link demo.obj kernel32.lib user32.lib /OUT:llvm_demo.exe ^
+rem /nologo /incremental:no /opt:ref /subsystem:CONSOLE /defaultlib:libcmt -debug
+rem rem && llvm_demo
del *.obj > NUL 2> NUL