Skip to content

Commit 60f901f

Browse files
committed
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.
1 parent 04c9f2e commit 60f901f

File tree

5 files changed

+582
-24
lines changed

5 files changed

+582
-24
lines changed

ChangeLog

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
2012-12-11 H.J. Lu <[email protected]>
2+
3+
* Makefile.def (target_modules): Add bootstrap=true and
4+
raw_cxx=true to libsanitizer.
5+
* configure.ac (bootstrap_target_libs): Add libsanitizer.
6+
* Makefile.in: Regenerated.
7+
* configure: Likewise.
8+
19
2012-12-08 Jan-Benedict Glaw <[email protected]>
210

311
* config.sub: Merge from config repo.

Makefile.def

+4-1
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,10 @@ target_modules = { module= libstdc++-v3;
119119
lib_path=src/.libs;
120120
raw_cxx=true; };
121121
target_modules = { module= libmudflap; lib_path=.libs; };
122-
target_modules = { module= libsanitizer; lib_path=.libs; };
122+
target_modules = { module= libsanitizer;
123+
bootstrap=true;
124+
lib_path=.libs;
125+
raw_cxx=true; };
123126
target_modules = { module= libssp; lib_path=.libs; };
124127
target_modules = { module= newlib; };
125128
target_modules = { module= libgcc; bootstrap=true; no_check=true; };

0 commit comments

Comments
 (0)