blob: e28d1a157439d9a1ee7c51d38001be59b55e0a05 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
/* Definitions of target machine for GNU compiler,
for NetBSD/vax ELF systems.
Copyright (C) 2002 Free Software Foundation, Inc.
This file is part of GNU CC.
GNU CC is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
GNU CC is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with GNU CC; see the file COPYING. If not, write to
the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
/* Names to predefine in the preprocessor for this target OS. */
#undef TARGET_OS_CPP_BUILTINS
#define TARGET_OS_CPP_BUILTINS() \
do \
{ \
NETBSD_OS_CPP_BUILTINS_ELF(); \
} \
while (0)
#undef CPP_SPEC
#define CPP_SPEC NETBSD_CPP_SPEC
#define NETBSD_ENTRY_POINT "__start"
#undef LINK_SPEC
#if 1
/* FIXME: We must link all executables statically until PIC support
is added to the compiler. */
#define LINK_SPEC \
"%{assert*} %{R*} %{rpath*} \
%{shared:%eThe -shared option is not currently supported for VAX ELF.} \
%{!shared: \
-dc -dp \
%{!nostdlib: \
%{!r*: \
%{!e*:-e %(netbsd_entry_point)}}} \
%{!static:-static} \
%{static:-static}}"
#else
#define LINK_SPEC NETBSD_LINK_SPEC_ELF
#endif
#define EXTRA_SPECS \
{ "netbsd_entry_point", NETBSD_ENTRY_POINT },
/* We use gas, not the UNIX assembler. */
#undef TARGET_DEFAULT
#define TARGET_DEFAULT 0
#undef ASM_FINAL_SPEC
|