aboutsummaryrefslogtreecommitdiff
path: root/gcc/configure.in
diff options
context:
space:
mode:
authorAlexandre Oliva <oliva@lsd.ic.unicamp.br>1999-09-21 00:55:08 +0000
committerAlexandre Oliva <oliva@gcc.gnu.org>1999-09-21 00:55:08 +0000
commit0c723adadadf090ab23d6269157c168326cea79d (patch)
tree685d90ae9967332a63fb980f5ca96b948fb4f0e4 /gcc/configure.in
parent447cfcb9e12b13e75072f4774bc4579998513a6a (diff)
downloadgcc-0c723adadadf090ab23d6269157c168326cea79d.zip
gcc-0c723adadadf090ab23d6269157c168326cea79d.tar.gz
gcc-0c723adadadf090ab23d6269157c168326cea79d.tar.bz2
sol2.h (PREFERRED_DEBUGGING_TYPE): Use stabs.
* config/i386/sol2.h (PREFERRED_DEBUGGING_TYPE): Use stabs. (ASM_SPEC): Moved from sol2dbg.h. Added work-around for gas. * config/i386/sol2dbg.h: Removed. * config/i386/sol2gas.h: New file, to enable gas work-around. * configure.in: Use i386/sol2gas.h on Solaris/x86 --with-gas. Don't use sol2dbg.h. * configure: Rebuilt. From-SVN: r29534
Diffstat (limited to 'gcc/configure.in')
-rw-r--r--gcc/configure.in9
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"