Compare commits

..

4 commits

Author SHA1 Message Date
a5239ced1f
feature(daemon): added api renewal & calculated sleep time
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
2022-04-30 12:21:05 +02:00
f40cebad4f
docs: added docs command & notice in README 2022-04-30 12:20:45 +02:00
089d1c6bc4
chore(ci): run builds sequentially 2022-04-30 12:20:02 +02:00
d021905f37
chore: use -d dynamic_boehm for compilation 2022-04-30 12:20:02 +02:00

View file

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