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 | 5eb0869364e136a00cce22993c00dda999845c6e (patch) | |
tree | c64e2e458430e882cdfaf34b6676b1b2d4604cea /configure.ac | |
parent | eb13b4b9e63860939491621d3cb23723f2898a3e (diff) | |
download | fsf-binutils-gdb-5eb0869364e136a00cce22993c00dda999845c6e.zip fsf-binutils-gdb-5eb0869364e136a00cce22993c00dda999845c6e.tar.gz fsf-binutils-gdb-5eb0869364e136a00cce22993c00dda999845c6e.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.ac')
-rw-r--r-- | configure.ac | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 49f4f5d..a92ff3a 100644 --- a/configure.ac +++ b/configure.ac @@ -2433,6 +2433,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! |