1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

makefile: use C 99 standard

This commit is contained in:
Alexander Medvednikov 2019-10-06 17:35:03 +03:00
parent 30e7cd8ed5
commit fdef2b0f8b

View File

@ -12,7 +12,7 @@ all:
rm -rf vc/
git clone --depth 1 --quiet https://github.com/vlang/vc
ifdef WIN32
$(CC) -std=gnu11 -w -o v0.exe vc/v_win.c
$(CC) -std=c99 -w -o v0.exe vc/v_win.c
./v0.exe -o v.exe compiler
rm -f v0.exe
else