gcc2 snapshot 980401 import
[official-gcc.git] / gcc / config / i386 / sol2.h
blobfc93bf1e99e7ff3d95f88d08580c436824295db6
1 /* Target definitions for GNU compiler for Intel 80386 running Solaris 2
2 Copyright (C) 1993, 1995, 1996, 1997, 1998 Free Software Foundation, Inc.
3 Contributed by Fred Fish (fnf@cygnus.com).
5 This file is part of GNU CC.
7 GNU CC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
12 GNU CC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU CC; see the file COPYING. If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
22 #include "i386/sysv4.h"
24 /* The Solaris 2.0 x86 linker botches alignment of code sections.
25 It tries to align to a 16 byte boundary by padding with 0x00000090
26 ints, rather than 0x90 bytes (nop). This generates trash in the
27 ".init" section since the contribution from crtbegin.o is only 7
28 bytes. The linker pads it to 16 bytes with a single 0x90 byte, and
29 two 0x00000090 ints, which generates a segmentation violation when
30 executed. This macro forces the assembler to do the padding, since
31 it knows what it is doing. */
33 #define FORCE_INIT_SECTION_ALIGN asm (ALIGN_ASM_OP ## " 16")
34 #define FORCE_FINI_SECTION_ALIGN FORCE_INIT_SECTION_ALIGN
36 /* Add "sun" to the list of symbols defined for SVR4. */
37 #undef CPP_PREDEFINES
38 #define CPP_PREDEFINES \
39 "-Dunix -D__svr4__ -D__SVR4 -Dsun -Asystem(svr4)"
41 #undef CPP_SPEC
42 #define CPP_SPEC "%(cpp_cpu) %[cpp_cpu] \
43 %{compat-bsd:-iwithprefixbefore ucbinclude -I/usr/ucbinclude}"
45 #undef LIB_SPEC
46 #define LIB_SPEC \
47 "%{compat-bsd:-lucb -lsocket -lnsl -lelf -laio} %{!shared:%{!symbolic:-lc}}"
49 #undef ENDFILE_SPEC
50 #define ENDFILE_SPEC "crtend.o%s %{pg:crtn.o%s}%{!pg:crtn.o%s}"
52 #undef STARTFILE_SPEC
53 #define STARTFILE_SPEC "%{!shared: \
54 %{!symbolic: \
55 %{pg:gcrt1.o%s}%{!pg:%{p:mcrt1.o%s}%{!p:crt1.o%s}}}}\
56 %{pg:gmon.o%s} crti.o%s \
57 %{ansi:values-Xc.o%s} \
58 %{!ansi: \
59 %{traditional:values-Xt.o%s} \
60 %{!traditional:values-Xa.o%s}} \
61 crtbegin.o%s"
63 /* This should be the same as in svr4.h, except with -R added. */
64 #undef LINK_SPEC
65 #define LINK_SPEC \
66 "%{h*} %{v:-V} \
67 %{b} %{Wl,*:%*} \
68 %{static:-dn -Bstatic} \
69 %{shared:-G -dy -z text} \
70 %{symbolic:-Bsymbolic -G -dy -z text} \
71 %{G:-G} \
72 %{YP,*} \
73 %{R*} \
74 %{compat-bsd: \
75 %{!YP,*:%{pg:-Y P,/usr/ucblib:/usr/ccs/lib/libp:/usr/lib/libp:/usr/ccs/lib:/usr/lib} \
76 %{!pg:%{p:-Y P,/usr/ucblib:/usr/ccs/lib/libp:/usr/lib/libp:/usr/ccs/lib:/usr/lib} \
77 %{!p:-Y P,/usr/ucblib:/usr/ccs/lib:/usr/lib}}} \
78 -R /usr/ucblib} \
79 %{!compat-bsd: \
80 %{!YP,*:%{pg:-Y P,/usr/ccs/lib/libp:/usr/lib/libp:/usr/ccs/lib:/usr/lib} \
81 %{!pg:%{p:-Y P,/usr/ccs/lib/libp:/usr/lib/libp:/usr/ccs/lib:/usr/lib} \
82 %{!p:-Y P,/usr/ccs/lib:/usr/lib}}}} \
83 %{Qy:} %{!Qn:-Qy}"
85 /* This defines which switch letters take arguments.
86 It is as in svr4.h but with -R added. */
88 #undef SWITCH_TAKES_ARG
89 #define SWITCH_TAKES_ARG(CHAR) \
90 (DEFAULT_SWITCH_TAKES_ARG(CHAR) \
91 || (CHAR) == 'R' \
92 || (CHAR) == 'h' \
93 || (CHAR) == 'z')
95 #define STDC_0_IN_SYSTEM_HEADERS