Use dynamic_boehm everywhere
This commit is contained in:
parent
ead4c5f4b7
commit
d5409201c7
2 changed files with 3 additions and 22 deletions
6
Makefile
6
Makefile
|
|
@ -3,7 +3,7 @@ SRC_DIR := src
|
|||
SOURCES != find '$(SRC_DIR)' -iname '*.v'
|
||||
|
||||
V_PATH ?= v
|
||||
V := $(V_PATH) -showcc -gc boehm
|
||||
V := $(V_PATH) -showcc -gc boehm -d dynamic_boehm
|
||||
|
||||
all: vieter
|
||||
|
||||
|
|
@ -12,7 +12,7 @@ all: vieter
|
|||
# We force the boehm gc to be compiled dynamically because otherwise, our CI
|
||||
# build breaks.
|
||||
vieter: $(SOURCES)
|
||||
$(V) -d dynamic_boehm -g -o vieter $(SRC_DIR)
|
||||
$(V) -g -o vieter $(SRC_DIR)
|
||||
|
||||
# Debug build using gcc
|
||||
# The debug build can't use the boehm garbage collector, as that is
|
||||
|
|
@ -66,7 +66,7 @@ vet:
|
|||
|
||||
.PHONY: test
|
||||
test:
|
||||
$(V) -d dynamic_boehm test $(SRC_DIR)
|
||||
$(V) test $(SRC_DIR)
|
||||
|
||||
# Build & patch the V compiler
|
||||
.PHONY: v
|
||||
|
|
|
|||
Reference in a new issue