mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-04 23:01:19 +08:00
linkage.exp: Correct file type check for Darwin.
2008-12-02 Jack Howarth <howarth@bromo.med.uc.edu> * gcc.misc-tests/linkage.exp: Correct file type check for Darwin. From-SVN: r142371
This commit is contained in:
parent
664cd4857f
commit
384392535a
@ -1,3 +1,7 @@
|
||||
2008-12-02 Jack Howarth <howarth@bromo.med.uc.edu>
|
||||
|
||||
* gcc.misc-tests/linkage.exp: Correct file type check for Darwin.
|
||||
|
||||
2008-12-02 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
PR middle-end/38343
|
||||
|
@ -73,14 +73,21 @@ if { [isnative] && ![is_remote host] } then {
|
||||
} elseif [ string match "*32-bit*" $file_string ] {
|
||||
set native_cflags "-m32"
|
||||
}
|
||||
} elseif [istarget "*-*-darwin*"] {
|
||||
} elseif [istarget "powerpc*-*-darwin*"] {
|
||||
set file_string [exec file "linkage-x.o"]
|
||||
if [ string match "*64-bit*" $file_string ] {
|
||||
if [ string match "*ppc64" $file_string ] {
|
||||
set native_cflags "-m64"
|
||||
} elseif [ string match "*32-bit*" $file_string ] {
|
||||
} elseif [ string match "*ppc" $file_string ] {
|
||||
set native_cflags "-m32"
|
||||
}
|
||||
}
|
||||
} elseif [istarget "*86*-*-darwin*"] {
|
||||
set file_string [exec file "linkage-x.o"]
|
||||
if [ string match "*x86_64" $file_string ] {
|
||||
set native_cflags "-m64"
|
||||
} elseif [ string match "*i386" $file_string ] {
|
||||
set native_cflags "-m32"
|
||||
}
|
||||
}
|
||||
|
||||
if [file exists "linkage-y.o"] then {
|
||||
file delete "linkage-y.o"
|
||||
|
Loading…
x
Reference in New Issue
Block a user