Compare commits
4 Commits
a1c308f29d
...
a5239ced1f
| Author | SHA1 | Date |
|---|---|---|
|
|
a5239ced1f | |
|
|
f40cebad4f | |
|
|
089d1c6bc4 | |
|
|
d021905f37 |
5
Makefile
5
Makefile
|
|
@ -3,13 +3,14 @@ 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
|
||||
|
||||
|
||||
# =====COMPILATION=====
|
||||
# Regular binary
|
||||
# We force the boehm gc to be compiled dynamically because otherwise, our CI
|
||||
# build breaks.
|
||||
vieter: $(SOURCES)
|
||||
$(V) -g -o vieter $(SRC_DIR)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue