re PR libffi/64581 (libffi/testsuite/libffi.special/special.exp doesn't use newly built GCC)

PR libffi/64581

 * testsuite/lib/libffi.exp (libffi_target_compile): Don't switch
 to C++ mode when compiling C++ source code.

From-SVN: r219915
This commit is contained in:
Richard Henderson 2015-01-20 13:26:04 -08:00 committed by Richard Henderson
parent a5504e99e1
commit 039ad4c2f4
2 changed files with 6 additions and 4 deletions

View File

@ -1,3 +1,9 @@
2015-01-19 Richard Henderson <rth@redhat.com>
PR libffi/64581
* testsuite/lib/libffi.exp (libffi_target_compile): Don't switch
to C++ mode when compiling C++ source code.
2015-01-19 Richard Henderson <rth@redhat.com>
* Merge to upstream commit 3ac1610aa33c887ea9b14935208943925714a33e.

View File

@ -219,10 +219,6 @@ proc libffi_target_compile { source dest type options } {
lappend options "libs= -lpthread"
}
if { [string match "*.cc" $source] } {
lappend options "c++"
}
verbose "options: $options"
return [target_compile $source $dest $type $options]
}