aboutsummaryrefslogtreecommitdiff
path: root/ci
diff options
context:
space:
mode:
authorMikkel Hjortshoej <fyoucon@gmail.com>2020-08-23 15:25:19 +0200
committerMikkel Hjortshoej <fyoucon@gmail.com>2020-08-23 15:25:19 +0200
commitae2fc5830e18d536909fdb816c73b240867bff69 (patch)
tree9fb66bd426f74319cb47e56f25a1d0cf6003d520 /ci
parent16b50a2f578a2038a747e7f42f330f845a92cd97 (diff)
Add git sha to `odin version` command
Diffstat (limited to 'ci')
-rw-r--r--ci/build_ci.bat31
1 files changed, 0 insertions, 31 deletions
diff --git a/ci/build_ci.bat b/ci/build_ci.bat
deleted file mode 100644
index 5d5b30a74..000000000
--- a/ci/build_ci.bat
+++ /dev/null
@@ -1,31 +0,0 @@
-@echo off
-
-:: Make sure this is a decent name and not generic
-set exe_name=odin.exe
-
-set compiler_flags= -nologo -Oi -TP -fp:precise -Gm- -MP -FC -EHsc- -GR- -GF -O2 -MT -Z7
-set compiler_defines= -DLLVM_BACKEND_SUPPORT -DNO_ARRAY_BOUNDS_CHECK
-
-set compiler_warnings= ^
- -W4 -WX ^
- -wd4100 -wd4101 -wd4127 -wd4189 ^
- -wd4201 -wd4204 ^
- -wd4456 -wd4457 -wd4480 ^
- -wd4512
-
-set compiler_includes=
-set libs= ^
- kernel32.lib ^
- bin\llvm\windows\LLVM-C.lib
-
-set linker_flags= -incremental:no -opt:ref -subsystem:console -debug
-
-set compiler_settings=%compiler_includes% %compiler_flags% %compiler_warnings% %compiler_defines%
-set linker_settings=%libs% %linker_flags%
-
-del *.pdb > NUL 2> NUL
-del *.ilk > NUL 2> NUL
-
-cl %compiler_settings% "src\main.cpp" /link %linker_settings% -OUT:%exe_name%
-
-:end_of_build