chore: use -d dynamic_boehm for compilation
parent
6f9e1b5f3c
commit
d021905f37
5
Makefile
5
Makefile
|
@ -3,13 +3,14 @@ SRC_DIR := src
|
||||||
SOURCES != find '$(SRC_DIR)' -iname '*.v'
|
SOURCES != find '$(SRC_DIR)' -iname '*.v'
|
||||||
|
|
||||||
V_PATH ?= v
|
V_PATH ?= v
|
||||||
V := $(V_PATH) -showcc -gc boehm
|
V := $(V_PATH) -showcc -gc boehm -d dynamic_boehm
|
||||||
|
|
||||||
all: vieter
|
all: vieter
|
||||||
|
|
||||||
|
|
||||||
# =====COMPILATION=====
|
# =====COMPILATION=====
|
||||||
# Regular binary
|
# We force the boehm gc to be compiled dynamically because otherwise, our CI
|
||||||
|
# build breaks.
|
||||||
vieter: $(SOURCES)
|
vieter: $(SOURCES)
|
||||||
$(V) -g -o vieter $(SRC_DIR)
|
$(V) -g -o vieter $(SRC_DIR)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue