diff options
Diffstat (limited to 'gcc/configure.in')
-rw-r--r-- | gcc/configure.in | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/gcc/configure.in b/gcc/configure.in index 2ce4ac7..132b908 100644 --- a/gcc/configure.in +++ b/gcc/configure.in @@ -1543,11 +1543,10 @@ changequote(,)dnl changequote([,])dnl xm_file="xm-siglist.h xm-alloca.h ${xm_file}" xm_defines="USG POSIX SMALL_ARG_MAX" - if test x$stabs = xyes - then - tm_file=i386/sol2dbg.h - else - tm_file=i386/sol2.h + tm_file=i386/sol2.h + if test x$gas = xyes; then + # Only needed if gas does not support -s + tm_file="i386/sol2gas.h ${tm_file}" fi tmake_file=i386/t-sol2 extra_parts="crt1.o crti.o crtn.o gcrt1.o gmon.o crtbegin.o crtend.o" |