diff options
author | hjl <hjl@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-12-11 21:35:40 +0000 |
---|---|---|
committer | hjl <hjl@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-12-11 21:35:40 +0000 |
commit | 579abfee984c7f67bd3ba4c98f430bd951332ce9 (patch) | |
tree | a8b6b1aef29c04e29555a704d66db6f3ae7e3f75 /Makefile.def | |
parent | c8723c2d652139587f9766be37a4ba09ba12787f (diff) | |
download | gcc-579abfee984c7f67bd3ba4c98f430bd951332ce9.tar.gz |
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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194425 138bc75d-0d04-0410-961f-82ee72b054a4
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 1ea63ac10f8..8d8af2332cd 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; }; |