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

Makefile: add -lm

This commit is contained in:
Alexander Medvednikov 2019-07-10 21:59:08 +02:00
parent 9efe305093
commit 892d2b58ac

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 -std=gnu11 -w -o v v.c -lm
./v -o v compiler
rm v.c