Pass LSAN_OPTIONS to Makefiles in subdirectories
PR bootstrap/69329 * Makefile.tpl (BASE_FLAGS_TO_PASS): Add LSAN_OPTIONS. * Makefile.in: Regenerate. From-SVN: r232777
This commit is contained in:
parent
e9fe2963a9
commit
cefadad11a
3 changed files with 10 additions and 2 deletions
|
@ -1,3 +1,9 @@
|
|||
2016-01-24 Mikhail Maltsev <maltsevm@gmail.com>
|
||||
|
||||
PR bootstrap/69329
|
||||
* Makefile.tpl (BASE_FLAGS_TO_PASS): Add LSAN_OPTIONS.
|
||||
* Makefile.in: Regenerate.
|
||||
|
||||
2016-01-12 Andris Pavenis <andris.pavenis@iki.fi>
|
||||
|
||||
* configure.ac: Enable LTO for DJGPP
|
||||
|
|
|
@ -789,7 +789,8 @@ BASE_FLAGS_TO_PASS = \
|
|||
$(CXX_FOR_TARGET_FLAG_TO_PASS) \
|
||||
"TFLAGS=$(TFLAGS)" \
|
||||
"CONFIG_SHELL=$(SHELL)" \
|
||||
"MAKEINFO=$(MAKEINFO) $(MAKEINFOFLAGS)"
|
||||
"MAKEINFO=$(MAKEINFO) $(MAKEINFOFLAGS)" \
|
||||
$(if $(LSAN_OPTIONS),"LSAN_OPTIONS=$(LSAN_OPTIONS)")
|
||||
|
||||
# We leave this in just in case, but it is not needed anymore.
|
||||
RECURSE_FLAGS_TO_PASS = $(BASE_FLAGS_TO_PASS)
|
||||
|
|
|
@ -590,7 +590,8 @@ BASE_FLAGS_TO_PASS =[+ FOR flags_to_pass +][+ IF optional +] \
|
|||
$(CXX_FOR_TARGET_FLAG_TO_PASS) \
|
||||
"TFLAGS=$(TFLAGS)" \
|
||||
"CONFIG_SHELL=$(SHELL)" \
|
||||
"MAKEINFO=$(MAKEINFO) $(MAKEINFOFLAGS)"
|
||||
"MAKEINFO=$(MAKEINFO) $(MAKEINFOFLAGS)" \
|
||||
$(if $(LSAN_OPTIONS),"LSAN_OPTIONS=$(LSAN_OPTIONS)")
|
||||
|
||||
# We leave this in just in case, but it is not needed anymore.
|
||||
RECURSE_FLAGS_TO_PASS = $(BASE_FLAGS_TO_PASS)
|
||||
|
|
Loading…
Add table
Reference in a new issue