Use dynamic_boehm everywhere
Some checks failed
ci/woodpecker/push/arch unknown status
ci/woodpecker/push/docker unknown status
ci/woodpecker/push/build_experimental Pipeline failed
ci/woodpecker/push/lint Pipeline failed
ci/woodpecker/push/build Pipeline was successful
ci/woodpecker/push/test Pipeline was successful

This commit is contained in:
Jef Roosens 2022-04-21 16:48:35 +02:00
parent 4be25ff356
commit 8e40481022
Signed by: Jef Roosens
GPG key ID: B75D4F293C7052DB
2 changed files with 3 additions and 22 deletions

View file

@ -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