1 |
38 |
julius |
/* Definitions for ARM running ucLinux using ELF
|
2 |
|
|
Copyright (C) 1999, 2001, 2004, 2005, 2007 Free Software Foundation, Inc.
|
3 |
|
|
Contributed by Philip Blundell <pb@nexus.co.uk>
|
4 |
|
|
|
5 |
|
|
This file is part of GCC.
|
6 |
|
|
|
7 |
|
|
GCC is free software; you can redistribute it and/or modify it
|
8 |
|
|
under the terms of the GNU General Public License as published
|
9 |
|
|
by the Free Software Foundation; either version 3, or (at your
|
10 |
|
|
option) any later version.
|
11 |
|
|
|
12 |
|
|
GCC is distributed in the hope that it will be useful, but WITHOUT
|
13 |
|
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
14 |
|
|
or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
|
15 |
|
|
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 |
|
|
/* We don't want a PLT. */
|
22 |
|
|
#undef NEED_PLT_RELOC
|
23 |
|
|
#define NEED_PLT_RELOC 0
|
24 |
|
|
|
25 |
|
|
#undef TARGET_VERSION
|
26 |
|
|
#define TARGET_VERSION fputs (" (ARM/ELF ucLinux)", stderr);
|
27 |
|
|
|
28 |
|
|
#undef TARGET_DEFAULT
|
29 |
|
|
#define TARGET_DEFAULT (MASK_SINGLE_PIC_BASE)
|
30 |
|
|
|
31 |
|
|
/* NOTE: The remaining definitions in this file are needed because uclinux
|
32 |
|
|
does not use config/linux.h. */
|
33 |
|
|
|
34 |
|
|
/* Do not assume anything about header files. */
|
35 |
|
|
#define NO_IMPLICIT_EXTERN_C
|
36 |
|
|
|
37 |
|
|
/* The GNU C++ standard library requires that these macros be defined. */
|
38 |
|
|
#undef CPLUSPLUS_CPP_SPEC
|
39 |
|
|
#define CPLUSPLUS_CPP_SPEC "-D_GNU_SOURCE %(cpp)"
|
40 |
|
|
|
41 |
|
|
/* Provide a STARTFILE_SPEC appropriate for GNU/Linux. Here we add
|
42 |
|
|
the GNU/Linux magical crtbegin.o file (see crtstuff.c) which
|
43 |
|
|
provides part of the support for getting C++ file-scope static
|
44 |
|
|
object constructed before entering `main'. */
|
45 |
|
|
|
46 |
|
|
#undef STARTFILE_SPEC
|
47 |
|
|
#define STARTFILE_SPEC \
|
48 |
|
|
"%{!shared: \
|
49 |
|
|
%{pg:gcrt1.o%s} %{!pg:%{p:gcrt1.o%s} \
|
50 |
|
|
%{!p:%{profile:gcrt1.o%s} \
|
51 |
|
|
%{!profile:crt1.o%s}}}} \
|
52 |
|
|
crti.o%s %{!shared:crtbegin.o%s} %{shared:crtbeginS.o%s}"
|
53 |
|
|
|
54 |
|
|
/* Provide a ENDFILE_SPEC appropriate for GNU/Linux. Here we tack on
|
55 |
|
|
the GNU/Linux magical crtend.o file (see crtstuff.c) which
|
56 |
|
|
provides part of the support for getting C++ file-scope static
|
57 |
|
|
object constructed before entering `main', followed by a normal
|
58 |
|
|
GNU/Linux "finalizer" file, `crtn.o'. */
|
59 |
|
|
|
60 |
|
|
#undef ENDFILE_SPEC
|
61 |
|
|
#define ENDFILE_SPEC \
|
62 |
|
|
"%{!shared:crtend.o%s} %{shared:crtendS.o%s} crtn.o%s"
|
63 |
|
|
|
64 |
|
|
#undef CC1_SPEC
|
65 |
|
|
#define CC1_SPEC "%{profile:-p}"
|
66 |
|
|
|
67 |
|
|
#define LINK_GCC_C_SEQUENCE_SPEC \
|
68 |
|
|
"%{static:--start-group} %G %L %{static:--end-group}%{!static:%G}"
|
69 |
|
|
|
70 |
|
|
/* Use --as-needed -lgcc_s for eh support. */
|
71 |
|
|
#ifdef HAVE_LD_AS_NEEDED
|
72 |
|
|
#define USE_LD_AS_NEEDED 1
|
73 |
|
|
#endif
|