Skip to content

Commit 137fade

Browse files
committed
Makefile: support CFLAGS and LDFLAGS for the vc/v.c to v bootstrap.
1 parent 3fe8204 commit 137fade

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Makefile

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
CC ?= cc
22
VFLAGS ?=
3+
CFLAGS ?=
4+
LDFLAGS ?=
35

46
all:
57
rm -rf vc/
68
git clone --depth 1 --quiet https://github.com/vlang/vc
7-
$(CC) -std=gnu11 -w -I ./thirdparty/stdatomic/nix -o v1 vc/v.c -lm -lexecinfo -lpthread
9+
$(CC) $(CFLAGS) -std=gnu11 -w -I ./thirdparty/stdatomic/nix -o v1 vc/v.c -lm -lexecinfo -lpthread $(LDFLAGS)
810
./v1 -no-parallel -o v2 $(VFLAGS) cmd/v
911
./v2 -o v $(VFLAGS) cmd/v
1012
rm -rf v1 v2 vc/

0 commit comments

Comments
 (0)