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

operator | not defined on bool

This commit is contained in:
Alexander Medvednikov
2019-09-15 19:07:40 +03:00
parent 48c05b5a45
commit 3db4d66824
6 changed files with 27 additions and 18 deletions

View File

@@ -15,7 +15,7 @@ ifdef WIN32
$(CC) -std=gnu11 -DUNICODE -D_UNICODE -w -o v0.exe vc/v_win.c
./v0.exe -o v.exe compiler
else
$(CC) -std=gnu11 -w -o v vc/v.c -lm
$(CC) -std=gnu11 -o v vc/v.c -lm
endif
rm -rf vc/
@echo "V has been successfully built"