+2001-06-02 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
+
+ * gcc.misc-tests/linkage.exp: Use wildcards when matching N32.
+ Ensure logfile entry matches exec command line.
+
2001-05-31 Richard Henderson <rth@redhat.com>
* gcc.c-torture/execute/memcheck/blkarg.x: Disable the test.
if [ string match "*64*" $file_string ] {
set native_cflags "-64"
}
- if [ string match "N32" $file_string ] {
+ if [ string match "*N32*" $file_string ] {
set native_cflags "-n32"
}
}
catch { exec rm -f linkage-y.o }
- send_log "cc -c $srcdir/$subdir/linkage-y.c >&/dev/null\n"
+ send_log "cc -c $native_cflags $srcdir/$subdir/linkage-y.c >&/dev/null\n"
catch { exec cc -c $native_cflags "$srcdir/$subdir/linkage-y.c" >&/dev/null }
if ![file exists "linkage-y.o"] then {
- send_log "c89 -c $srcdir/$subdir/linkage-y.c >&/dev/null\n"
+ send_log "c89 -c $native_cflags $srcdir/$subdir/linkage-y.c >&/dev/null\n"
catch { exec c89 -c $native_cflags "$srcdir/$subdir/linkage-y.c" >&/dev/null }
}
if [file exists "linkage-y.o"] then {