1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
This commit is contained in:
Zaoqi 2019-07-01 12:13:57 +08:00 committed by Alexander Medvednikov
parent 52f93ae45f
commit 9fcc3ed0e6

View File

@ -2,7 +2,7 @@ all: clean v
$(info V has been successfully built)
v: v.c
cc -std=gnu11 -w -o v v.c
cc -march=native -std=gnu11 -w -o v v.c
./v -o v compiler
rm v.c