diff options
author | Rainer Orth <ro@TechFak.Uni-Bielefeld.DE> | 2001-06-26 18:27:01 +0000 |
---|---|---|
committer | Rainer Orth <ro@gcc.gnu.org> | 2001-06-26 18:27:01 +0000 |
commit | 5e3caf26130ce7ec7e34b28e4f412c6e7c313eae (patch) | |
tree | b73b862ad1aa91a018988051b5167024a04775b8 /gcc/config/i386/sol2.h | |
parent | 672a6f42e98d55a92af9b649f077c0d38517116e (diff) | |
download | gcc-5e3caf26130ce7ec7e34b28e4f412c6e7c313eae.tar.gz |
* config/i386/sol2.h (CPP_SPEC): Pass -P for .S files.
From-SVN: r43587
Diffstat (limited to 'gcc/config/i386/sol2.h')
-rw-r--r-- | gcc/config/i386/sol2.h | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/gcc/config/i386/sol2.h b/gcc/config/i386/sol2.h index bd61ee99700..6d15ec4c024 100644 --- a/gcc/config/i386/sol2.h +++ b/gcc/config/i386/sol2.h @@ -1,5 +1,5 @@ /* Target definitions for GNU compiler for Intel 80386 running Solaris 2 - Copyright (C) 1993, 1995, 1996, 1997, 1998, 1999 + Copyright (C) 1993, 1995, 1996, 1997, 1998, 1999, 2000, 2001 Free Software Foundation, Inc. Contributed by Fred Fish (fnf@cygnus.com). @@ -66,11 +66,14 @@ Boston, MA 02111-1307, USA. */ #define CPP_PREDEFINES \ "-Dunix -D__svr4__ -D__SVR4 -Dsun -Asystem=svr4" +/* Solaris 2/Intel as chokes on #line directives. */ #undef CPP_SPEC -#define CPP_SPEC "%(cpp_cpu) \ - %{pthreads:-D_REENTRANT -D_PTHREADS} \ - %{!pthreads:%{threads:-D_REENTRANT -D_SOLARIS_THREADS}} \ - %{compat-bsd:-iwithprefixbefore ucbinclude -I/usr/ucbinclude}" +#define CPP_SPEC \ + "%{.S:-P} \ + %(cpp_cpu) \ + %{pthreads:-D_REENTRANT -D_PTHREADS} \ + %{!pthreads:%{threads:-D_REENTRANT -D_SOLARIS_THREADS}} \ + %{compat-bsd:-iwithprefixbefore ucbinclude -I/usr/ucbinclude}" #undef LIB_SPEC #define LIB_SPEC \ |