mirror of
https://github.com/dlang-community/D-Scanner.git
synced 2025-04-26 21:30:14 +03:00
Workaround 17506 by excluding treemap.d (#459)
* Workaround 17506 by excluding treemap.d * Add Bugzilla and GitHub references for workaround 17506
This commit is contained in:
parent
cf3d702720
commit
80b831adda
1 changed files with 3 additions and 1 deletions
4
makefile
4
makefile
|
@ -5,8 +5,10 @@ DMD := $(DC)
|
||||||
GDC := gdc
|
GDC := gdc
|
||||||
LDC := ldc2
|
LDC := ldc2
|
||||||
OBJ_DIR := obj
|
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 := \
|
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 dsymbol/src -name "*.d")\
|
||||||
$(shell find inifiled/source/ -name "*.d")\
|
$(shell find inifiled/source/ -name "*.d")\
|
||||||
$(shell find libdparse/src/std/experimental/ -name "*.d")\
|
$(shell find libdparse/src/std/experimental/ -name "*.d")\
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue