darwin64.h revision 169689
1128526Stjr/* Target definitions for x86_64 running Darwin.
2128526Stjr   Copyright (C) 2006 Free Software Foundation, Inc.
3128526Stjr   Contributed by Apple Computer Inc.
4128526Stjr
5128526StjrThis file is part of GCC.
6174990Sache
7128526StjrGCC is free software; you can redistribute it and/or modify
8128526Stjrit under the terms of the GNU General Public License as published by
9128526Stjrthe Free Software Foundation; either version 2, or (at your option)
10128526Stjrany later version.
11128526Stjr
12128526StjrGCC is distributed in the hope that it will be useful,
13128526Stjrbut WITHOUT ANY WARRANTY; without even the implied warranty of
14128526StjrMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15128526StjrGNU General Public License for more details.
16128526Stjr
17128526StjrYou should have received a copy of the GNU General Public License
18128526Stjralong with GCC; see the file COPYING.  If not, write to
19128526Stjrthe Free Software Foundation, 51 Franklin Street, Fifth Floor,
20174990SacheBoston, MA 02110-1301, USA.  */
21128526Stjr
22128526Stjr#undef TARGET_VERSION
23128526Stjr#define TARGET_VERSION fprintf (stderr, " (x86_64 Darwin)");
24128526Stjr
25128526Stjr#undef  DARWIN_ARCH_SPEC
26128526Stjr#define DARWIN_ARCH_SPEC "%{m32:i386;:x86_64}"
27128526Stjr
28128526Stjr#undef  DARWIN_SUBARCH_SPEC
29128526Stjr#define DARWIN_SUBARCH_SPEC DARWIN_ARCH_SPEC
30128526Stjr
31128526Stjr#undef SUBTARGET_EXTRA_SPECS
32128526Stjr#define SUBTARGET_EXTRA_SPECS                                   \
33128526Stjr  { "darwin_arch", DARWIN_ARCH_SPEC },                          \
34128526Stjr  { "darwin_crt2", "" },                                        \
35128526Stjr  { "darwin_subarch", DARWIN_SUBARCH_SPEC },
36128526Stjr