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 /Makefile.def | |
parent | eb13b4b9e63860939491621d3cb23723f2898a3e (diff) | |
download | gdb-5eb0869364e136a00cce22993c00dda999845c6e.zip gdb-5eb0869364e136a00cce22993c00dda999845c6e.tar.gz 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 'Makefile.def')
-rw-r--r-- | Makefile.def | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile.def b/Makefile.def index 1ea63ac..8d8af23 100644 --- a/Makefile.def +++ b/Makefile.def @@ -119,7 +119,10 @@ target_modules = { module= libstdc++-v3; lib_path=src/.libs; raw_cxx=true; }; target_modules = { module= libmudflap; lib_path=.libs; }; -target_modules = { module= libsanitizer; lib_path=.libs; }; +target_modules = { module= libsanitizer; + bootstrap=true; + lib_path=.libs; + raw_cxx=true; }; target_modules = { module= libssp; lib_path=.libs; }; target_modules = { module= newlib; }; target_modules = { module= libgcc; bootstrap=true; no_check=true; }; |