g++.exp (g++_init): Add -fmessage-length=0 to ALWAYS_CXXFLAGS.

* lib/g++.exp (g++_init): Add -fmessage-length=0 to
	ALWAYS_CXXFLAGS.

From-SVN: r32039
This commit is contained in:
Mark Mitchell 2000-02-17 20:24:27 +00:00 committed by Mark Mitchell
parent b9a73e32f1
commit 44399cac47
2 changed files with 9 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2000-02-17 Mark Mitchell <mark@codesourcery.com>
* lib/g++.exp (g++_init): Add -fmessage-length=0 to
ALWAYS_CXXFLAGS.
Fri Feb 11 12:35:40 2000 Robert Lipe <robertl@sco.com>
* gcc.c-torture/compile/20000211-3.c: New test.

View File

@ -131,6 +131,10 @@ proc g++_init { args } {
lappend ALWAYS_CXXFLAGS "additional_flags=$TOOL_OPTIONS";
}
# Make sure that lines are not wrapped. That can confuse the
# error-message parsing machinery.
lappend ALWAYS_CXXFLAGS "additional_flags={-fmessage-length=0}"
verbose -log "ALWAYS_CXXFLAGS set to $ALWAYS_CXXFLAGS"
verbose "g++ is initialized" 3