diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2012-12-12 13:52:58 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2012-12-12 13:52:58 +0000 |
commit | 60f901f4a9e7ab9e6030cc38f297b140233640ea (patch) | |
tree | aed40a11c4663119cefe39e85db8cc8054b71bfe /configure | |
parent | 04c9f2e31aa685de87c09982f07af75f3cd02a07 (diff) | |
download | newlib-60f901f4a9e7ab9e6030cc38f297b140233640ea.zip newlib-60f901f4a9e7ab9e6030cc38f297b140233640ea.tar.gz newlib-60f901f4a9e7ab9e6030cc38f297b140233640ea.tar.bz2 |
Add --with-build-config=bootstrap-asan support
* Makefile.def (target_modules): Add bootstrap=true and
raw_cxx=true to libsanitizer.
* configure.ac (bootstrap_target_libs): Add libsanitizer.
* Makefile.in: Regenerated.
* configure: Likewise.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -6913,6 +6913,11 @@ if echo " ${target_configdirs} " | grep " libgomp " > /dev/null 2>&1 ; then bootstrap_target_libs=${bootstrap_target_libs}target-libgomp, fi +# If we are building libsanitizer, bootstrap it. +if echo " ${target_configdirs} " | grep " libsanitizer " > /dev/null 2>&1 ; then + bootstrap_target_libs=${bootstrap_target_libs}target-libsanitizer, +fi + # Determine whether gdb needs tk/tcl or not. # Use 'maybe' since enable_gdbtk might be true even if tk isn't available # and in that case we want gdb to be built without tk. Ugh! |