diff --git a/makefile b/makefile index bf0a71c..edd6b62 100644 --- a/makefile +++ b/makefile @@ -5,8 +5,10 @@ DMD := $(DC) GDC := gdc LDC := ldc2 OBJ_DIR := obj +# Exclusion of treemap is due to https://issues.dlang.org/show_bug.cgi?id=17506 +# More details: https://github.com/dlang-community/D-Scanner/issues/461 SRC := \ - $(shell find containers/src -name "*.d")\ + $(shell find containers/src -name "*.d" -not -name 'treemap.d')\ $(shell find dsymbol/src -name "*.d")\ $(shell find inifiled/source/ -name "*.d")\ $(shell find libdparse/src/std/experimental/ -name "*.d")\