From efa67bf930411d8c8226f5424e888458a6323837 Mon Sep 17 00:00:00 2001 From: Jef Roosens Date: Thu, 21 Apr 2022 16:12:37 +0200 Subject: [PATCH] Compile boehm gc dynamically for debug --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index fb044fa..b665d4e 100644 --- a/Makefile +++ b/Makefile @@ -9,9 +9,10 @@ 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) + $(V) -d dynamic_boehm -g -o vieter $(SRC_DIR) # Debug build using gcc # The debug build can't use the boehm garbage collector, as that is