mirror of https://github.com/flysand7/ciabatta.git
Update bake.cmd
This commit is contained in:
parent
fbe47be3c5
commit
5cad924d68
8
bake.cmd
8
bake.cmd
|
@ -2,12 +2,12 @@
|
||||||
:: Compile UTF-8 resource into .obj file
|
:: Compile UTF-8 resource into .obj file
|
||||||
:: this .obj file has to be linked to the executable using it, NOT archived
|
:: this .obj file has to be linked to the executable using it, NOT archived
|
||||||
:: together with ciabatta.lib.
|
:: together with ciabatta.lib.
|
||||||
rem windres -o utf8.obj utf8.rc
|
windres -o utf8.obj utf8.rc
|
||||||
|
|
||||||
:: Compile chkstk
|
:: Compile chkstk
|
||||||
nasm src\os_win\chkstk.asm -ochkstk.o -fwin64
|
nasm src\os_win\chkstk.asm -ochkstk.o -fwin64
|
||||||
|
|
||||||
:: Compile the rest of the party
|
:: Compile the rest of the party
|
||||||
rem clang -Wall src\ciabatta.c -o ciabatta.obj -c -DCIABATTA_WIN -I inc -I src\_win -nodefaultlibs -g -mfma
|
clang -Wall src\ciabatta.c -o ciabatta.obj -c -DCIABATTA_WIN -I inc -I src\_win -nodefaultlibs -g -mfma
|
||||||
cuik src\ciabatta.c -o ciabatta.obj -c -DCIABATTA_WIN -I inc -I src\_win -nostdlib
|
rem cuik src\ciabatta.c -o ciabatta.obj -c -DCIABATTA_WIN -I inc -I src\_win -nostdlib
|
||||||
lib /nologo /out:ciabatta.lib chkstk.o ciabatta.obj
|
lib /nologo /out:ciabatta.lib chkstk.o utf8.obj ciabatta.obj
|
||||||
|
|
Loading…
Reference in New Issue