forked from OSchip/llvm-project
[Sanitizer] Make ASan/TSan sources depend on headers from interception library
llvm-svn: 161113
This commit is contained in:
parent
e831cdc429
commit
139a7c0575
|
@ -17,8 +17,8 @@ Implementation := Generic
|
|||
|
||||
# FIXME: use automatic dependencies?
|
||||
Dependencies := $(wildcard $(Dir)/*.h)
|
||||
Dependencies += $(wildcard $(Dir)/interception/*.h)
|
||||
Dependencies += $(wildcard $(Dir)/interception/mach_override/*.h)
|
||||
Dependencies += $(wildcard $(Dir)/../interception/*.h)
|
||||
Dependencies += $(wildcard $(Dir)/../interception/mach_override/*.h)
|
||||
|
||||
# Define a convenience variable for all the asan functions.
|
||||
AsanFunctions := $(Sources:%.cc=%)
|
||||
|
|
|
@ -18,6 +18,8 @@ Implementation := Generic
|
|||
|
||||
# FIXME: use automatic dependencies?
|
||||
Dependencies := $(wildcard $(Dir)/*.h)
|
||||
Dependencies += $(wildcard $(Dir)/../../interception/*.h)
|
||||
Dependencies += $(wildcard $(Dir)/../../interception/mach_override/*.h)
|
||||
|
||||
# Define a convenience variable for all the tsan functions.
|
||||
TsanFunctions += $(Sources:%.cc=%) $(AsmSources:%.S=%)
|
||||
|
|
Loading…
Reference in New Issue