Commit 615baed7 by Matthias Klose Committed by Matthias Klose

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
parent acef130f
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> 2006-04-10 Roger Sayle <roger@eyesopen.com>
* gcc.target/i386/vecinit-1.c: New test case. * gcc.target/i386/vecinit-1.c: New test case.
...@@ -238,7 +238,7 @@ proc gcc-set-multilib-library-path { compiler } { ...@@ -238,7 +238,7 @@ proc gcc-set-multilib-library-path { compiler } {
if { [is_remote host] == 0 && [which $compiler] != 0 } { if { [is_remote host] == 0 && [which $compiler] != 0 } {
foreach i "[exec $compiler --print-multi-lib]" { foreach i "[exec $compiler --print-multi-lib]" {
set mldir "" set mldir ""
regexp -- "\[a-z0-9=/\.-\]*;" $i mldir regexp -- "\[a-z0-9=_/\.-\]*;" $i mldir
set mldir [string trimright $mldir "\;@"] set mldir [string trimright $mldir "\;@"]
if { "$mldir" == "." } { if { "$mldir" == "." } {
continue continue
......
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> 2006-04-07 James E Wilson <wilson@specifix.com>
* testsuite/libffi.call/float4.c: New testcase. * testsuite/libffi.call/float4.c: New testcase.
......
...@@ -120,7 +120,7 @@ proc libffi-init { args } { ...@@ -120,7 +120,7 @@ proc libffi-init { args } {
if { [is_remote host] == 0 && [which $compiler] != 0 } { if { [is_remote host] == 0 && [which $compiler] != 0 } {
foreach i "[exec $compiler --print-multi-lib]" { foreach i "[exec $compiler --print-multi-lib]" {
set mldir "" set mldir ""
regexp -- "\[a-z0-9=/\.-\]*;" $i mldir regexp -- "\[a-z0-9=_/\.-\]*;" $i mldir
set mldir [string trimright $mldir "\;@"] set mldir [string trimright $mldir "\;@"]
if { "$mldir" == "." } { if { "$mldir" == "." } {
continue continue
......
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> 2006-03-21 Jakub Jelinek <jakub@redhat.com>
PR c++/26691 PR c++/26691
......
...@@ -107,7 +107,7 @@ proc libgomp_init { args } { ...@@ -107,7 +107,7 @@ proc libgomp_init { args } {
if { [is_remote host] == 0 && [which $compiler] != 0 } { if { [is_remote host] == 0 && [which $compiler] != 0 } {
foreach i "[exec $compiler --print-multi-lib]" { foreach i "[exec $compiler --print-multi-lib]" {
set mldir "" set mldir ""
regexp -- "\[a-z0-9=/\.-\]*;" $i mldir regexp -- "\[a-z0-9=_/\.-\]*;" $i mldir
set mldir [string trimright $mldir "\;@"] set mldir [string trimright $mldir "\;@"]
if { "$mldir" == "." } { if { "$mldir" == "." } {
continue continue
......
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> 2006-04-10 Andrew Haley <aph@redhat.com>
* include/x86_64-signal.h (HANDLE_DIVIDE_OVERFLOW): New. * include/x86_64-signal.h (HANDLE_DIVIDE_OVERFLOW): New.
......
...@@ -212,7 +212,7 @@ proc libjava_init { args } { ...@@ -212,7 +212,7 @@ proc libjava_init { args } {
if { [is_remote host] == 0 && [which $compiler] != 0 } { if { [is_remote host] == 0 && [which $compiler] != 0 } {
foreach i "[exec $compiler --print-multi-lib]" { foreach i "[exec $compiler --print-multi-lib]" {
set mldir "" set mldir ""
regexp -- "\[a-z0-9=/\.-\]*;" $i mldir regexp -- "\[a-z0-9=_/\.-\]*;" $i mldir
set mldir [string trimright $mldir "\;@"] set mldir [string trimright $mldir "\;@"]
if { "$mldir" == "." } { if { "$mldir" == "." } {
continue continue
......
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> 2005-11-22 Janis Johnson <janis187@us.ibm.com>
* testsuite/lib/libmudflap.exp (libmudflap-init): Remove -static from * testsuite/lib/libmudflap.exp (libmudflap-init): Remove -static from
......
...@@ -69,7 +69,7 @@ proc libmudflap-init { language } { ...@@ -69,7 +69,7 @@ proc libmudflap-init { language } {
if {[is_remote host] == 0} { if {[is_remote host] == 0} {
foreach i "[exec ${gccdir}/xgcc --print-multi-lib]" { foreach i "[exec ${gccdir}/xgcc --print-multi-lib]" {
set mldir "" set mldir ""
regexp -- "\[a-z0-9=/\.-\]*;" $i mldir regexp -- "\[a-z0-9=_/\.-\]*;" $i mldir
set mldir [string trimright $mldir "\;@"] set mldir [string trimright $mldir "\;@"]
if { "$mldir" == "." } { if { "$mldir" == "." } {
continue continue
......
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> 2006-04-10 Paolo Carlini <pcarlini@suse.de>
DR 538, [Ready] DR 538, [Ready]
......
...@@ -150,7 +150,7 @@ proc libstdc++_init { testfile } { ...@@ -150,7 +150,7 @@ proc libstdc++_init { testfile } {
if { [is_remote host] == 0 && [which $compiler] != 0 } { if { [is_remote host] == 0 && [which $compiler] != 0 } {
foreach i "[exec $compiler --print-multi-lib]" { foreach i "[exec $compiler --print-multi-lib]" {
set mldir "" set mldir ""
regexp -- "\[a-z0-9=/\.-\]*;" $i mldir regexp -- "\[a-z0-9=_/\.-\]*;" $i mldir
set mldir [string trimright $mldir "\;@"] set mldir [string trimright $mldir "\;@"]
if { "$mldir" == "." } { if { "$mldir" == "." } {
continue continue
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment