OSDN Git Service

PR target/43067
[pf3gnuchains/gcc-fork.git] / gcc / config / darwin9.h
1 /* Target definitions for Darwin (Mac OS X) systems.
2    Copyright (C) 2006, 2007 Free Software Foundation, Inc.
3    Contributed by Apple Inc.
4
5 This file is part of GCC.
6
7 GCC 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 3, or (at your option)
10 any later version.
11
12 GCC 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.
16
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3.  If not see
19 <http://www.gnu.org/licenses/>.  */
20
21 /* Prefer DWARF2.  */
22 #undef PREFERRED_DEBUGGING_TYPE
23 #define PREFERRED_DEBUGGING_TYPE DWARF2_DEBUG
24 #define DARWIN_PREFER_DWARF
25
26 /* Since DWARF2 is default, conditions for running dsymutil are different.  */
27 #undef LINK_COMMAND_SPEC
28 #define LINK_COMMAND_SPEC "\
29 %{!fdump=*:%{!fsyntax-only:%{!c:%{!M:%{!MM:%{!E:%{!S:\
30     %(linker) %l %X %{d} %{s} %{t} %{Z} \
31     %{A} %{e*} %{m} %{r} %{x} \
32     %{o*}%{!o:-o a.out} \
33     %{!A:%{!nostdlib:%{!nostartfiles:%S}}} \
34     %{L*} %(link_libgcc) %o %{fprofile-arcs|fprofile-generate*|coverage:-lgcov} \
35     %{fopenmp|ftree-parallelize-loops=*: \
36       %{static|static-libgcc|static-libstdc++|static-libgfortran: libgomp.a%s; : -lgomp } } \
37     %{!nostdlib:%{!nodefaultlibs:  %(link_ssp) %G %L }} \
38     %{!A:%{!nostdlib:%{!nostartfiles:%E}}} %{T*} %{F*} }}}}}}}\n\
39 %{!fdump=*:%{!fsyntax-only:%{!c:%{!M:%{!MM:%{!E:%{!S:\
40     %{.c|.cc|.C|.cpp|.cp|.c++|.cxx|.CPP|.m|.mm: \
41     %{g*:%{!gstabs*:%{!g0: dsymutil %{o*:%*}%{!o:a.out}}}}}}}}}}}}"
42
43 /* libSystem contains unwind information for signal frames.  */
44 #define DARWIN_LIBSYSTEM_HAS_UNWIND
45
46 /* The linker can generate branch islands.  */
47 #define DARWIN_LINKER_GENERATES_ISLANDS 1
48
49 #undef  ASM_OUTPUT_ALIGNED_COMMON
50 #define ASM_OUTPUT_ALIGNED_COMMON(FILE, NAME, SIZE, ALIGN)              \
51   do {                                                                  \
52     unsigned HOST_WIDE_INT _new_size = (SIZE);                          \
53     fprintf ((FILE), ".comm ");                                         \
54     assemble_name ((FILE), (NAME));                                     \
55     if (_new_size == 0) _new_size = 1;                                  \
56     fprintf ((FILE), ","HOST_WIDE_INT_PRINT_UNSIGNED",%u\n",            \
57              _new_size, floor_log2 ((ALIGN) / BITS_PER_UNIT));          \
58   } while (0)