mirror of
https://github.com/odin-lang/Odin.git
synced 2025-12-28 17:04:34 +00:00
12 lines
222 B
Batchfile
12 lines
222 B
Batchfile
@echo off
|
|
setlocal EnableDelayedExpansion
|
|
|
|
set file_input=%1
|
|
set name=%1
|
|
FOR %%f IN (name) do (
|
|
FOR %%g in (!%%f!) do set "%%f=%%~ng"
|
|
)
|
|
|
|
call clang -O2 -c %file_input% -o %name%.o ^
|
|
&& call ar %name%.o -rcs %name%.lib
|