mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-03-23 18:01:22 +08:00
libjava.exp (libjava_init): Recognize multilib directory names containing underscores.
gcc/testsuite: 2006-04-10 Matthias Klose <doko@debian.org> * testsuite/lib/libjava.exp (libjava_init): Recognize multilib directory names containing underscores. libffi: 2006-04-10 Matthias Klose <doko@debian.org> * testsuite/lib/libjava.exp (libjava_init): Recognize multilib directory names containing underscores. libgomp: 2006-04-10 Matthias Klose <doko@debian.org> * testsuite/lib/libjava.exp (libjava_init): Recognize multilib directory names containing underscores. libjava: 2006-04-10 Matthias Klose <doko@debian.org> * testsuite/lib/libjava.exp (libjava_init): Recognize multilib directory names containing underscores. libmudflap: 2006-04-10 Matthias Klose <doko@debian.org> * testsuite/lib/libjava.exp (libjava_init): Recognize multilib directory names containing underscores. libstdc++: 2006-04-10 Matthias Klose <doko@debian.org> * testsuite/lib/libjava.exp (libjava_init): Recognize multilib directory names containing underscores. From-SVN: r112833
This commit is contained in:
parent
acef130fab
commit
615baed708
@ -1,3 +1,8 @@
|
||||
2006-04-10 Matthias Klose <doko@debian.org>
|
||||
|
||||
* testsuite/lib/gcc-defs.exp (gcc-set-multilib-library-path):
|
||||
Recognize multilib directory names containing underscores.
|
||||
|
||||
2006-04-10 Roger Sayle <roger@eyesopen.com>
|
||||
|
||||
* gcc.target/i386/vecinit-1.c: New test case.
|
||||
|
@ -238,7 +238,7 @@ proc gcc-set-multilib-library-path { compiler } {
|
||||
if { [is_remote host] == 0 && [which $compiler] != 0 } {
|
||||
foreach i "[exec $compiler --print-multi-lib]" {
|
||||
set mldir ""
|
||||
regexp -- "\[a-z0-9=/\.-\]*;" $i mldir
|
||||
regexp -- "\[a-z0-9=_/\.-\]*;" $i mldir
|
||||
set mldir [string trimright $mldir "\;@"]
|
||||
if { "$mldir" == "." } {
|
||||
continue
|
||||
|
@ -1,3 +1,8 @@
|
||||
2006-04-10 Matthias Klose <doko@debian.org>
|
||||
|
||||
* testsuite/lib/libffi-dg.exp (libffi-init): Recognize multilib
|
||||
directory names containing underscores.
|
||||
|
||||
2006-04-07 James E Wilson <wilson@specifix.com>
|
||||
|
||||
* testsuite/libffi.call/float4.c: New testcase.
|
||||
|
@ -120,7 +120,7 @@ proc libffi-init { args } {
|
||||
if { [is_remote host] == 0 && [which $compiler] != 0 } {
|
||||
foreach i "[exec $compiler --print-multi-lib]" {
|
||||
set mldir ""
|
||||
regexp -- "\[a-z0-9=/\.-\]*;" $i mldir
|
||||
regexp -- "\[a-z0-9=_/\.-\]*;" $i mldir
|
||||
set mldir [string trimright $mldir "\;@"]
|
||||
if { "$mldir" == "." } {
|
||||
continue
|
||||
|
@ -1,3 +1,8 @@
|
||||
2006-04-10 Matthias Klose <doko@debian.org>
|
||||
|
||||
* testsuite/lib/libgomp.exp (libgomp_init): Recognize multilib
|
||||
directory names containing underscores.
|
||||
|
||||
2006-03-21 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
PR c++/26691
|
||||
|
@ -107,7 +107,7 @@ proc libgomp_init { args } {
|
||||
if { [is_remote host] == 0 && [which $compiler] != 0 } {
|
||||
foreach i "[exec $compiler --print-multi-lib]" {
|
||||
set mldir ""
|
||||
regexp -- "\[a-z0-9=/\.-\]*;" $i mldir
|
||||
regexp -- "\[a-z0-9=_/\.-\]*;" $i mldir
|
||||
set mldir [string trimright $mldir "\;@"]
|
||||
if { "$mldir" == "." } {
|
||||
continue
|
||||
|
@ -1,3 +1,8 @@
|
||||
2006-04-10 Matthias Klose <doko@debian.org>
|
||||
|
||||
* testsuite/lib/libjava.exp (libjava_init): Recognize multilib
|
||||
directory names containing underscores.
|
||||
|
||||
2006-04-10 Andrew Haley <aph@redhat.com>
|
||||
|
||||
* include/x86_64-signal.h (HANDLE_DIVIDE_OVERFLOW): New.
|
||||
|
@ -212,7 +212,7 @@ proc libjava_init { args } {
|
||||
if { [is_remote host] == 0 && [which $compiler] != 0 } {
|
||||
foreach i "[exec $compiler --print-multi-lib]" {
|
||||
set mldir ""
|
||||
regexp -- "\[a-z0-9=/\.-\]*;" $i mldir
|
||||
regexp -- "\[a-z0-9=_/\.-\]*;" $i mldir
|
||||
set mldir [string trimright $mldir "\;@"]
|
||||
if { "$mldir" == "." } {
|
||||
continue
|
||||
|
@ -1,3 +1,8 @@
|
||||
2006-04-10 Matthias Klose <doko@debian.org>
|
||||
|
||||
* testsuite/lib/libmudflap.exp (libmudflap-init): Recognize multilib
|
||||
directory names containing underscores.
|
||||
|
||||
2005-11-22 Janis Johnson <janis187@us.ibm.com>
|
||||
|
||||
* testsuite/lib/libmudflap.exp (libmudflap-init): Remove -static from
|
||||
|
@ -69,7 +69,7 @@ proc libmudflap-init { language } {
|
||||
if {[is_remote host] == 0} {
|
||||
foreach i "[exec ${gccdir}/xgcc --print-multi-lib]" {
|
||||
set mldir ""
|
||||
regexp -- "\[a-z0-9=/\.-\]*;" $i mldir
|
||||
regexp -- "\[a-z0-9=_/\.-\]*;" $i mldir
|
||||
set mldir [string trimright $mldir "\;@"]
|
||||
if { "$mldir" == "." } {
|
||||
continue
|
||||
|
@ -1,3 +1,8 @@
|
||||
2006-04-10 Matthias Klose <doko@debian.org>
|
||||
|
||||
* testsuite/lib/libstdc++.exp (libstdc++_init): Recognize multilib
|
||||
directory names containing underscores.
|
||||
|
||||
2006-04-10 Paolo Carlini <pcarlini@suse.de>
|
||||
|
||||
DR 538, [Ready]
|
||||
|
@ -150,7 +150,7 @@ proc libstdc++_init { testfile } {
|
||||
if { [is_remote host] == 0 && [which $compiler] != 0 } {
|
||||
foreach i "[exec $compiler --print-multi-lib]" {
|
||||
set mldir ""
|
||||
regexp -- "\[a-z0-9=/\.-\]*;" $i mldir
|
||||
regexp -- "\[a-z0-9=_/\.-\]*;" $i mldir
|
||||
set mldir [string trimright $mldir "\;@"]
|
||||
if { "$mldir" == "." } {
|
||||
continue
|
||||
|
Loading…
x
Reference in New Issue
Block a user