OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [config/] [rs6000/] [linux.h] - Blame information for rev 816

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 38 julius
/* Definitions of target machine for GNU compiler,
2
   for PowerPC machines running Linux.
3
   Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003,
4
   2004, 2005, 2006, 2007 Free Software Foundation, Inc.
5
   Contributed by Michael Meissner (meissner@cygnus.com).
6
 
7
   This file is part of GCC.
8
 
9
   GCC is free software; you can redistribute it and/or modify it
10
   under the terms of the GNU General Public License as published
11
   by the Free Software Foundation; either version 3, or (at your
12
   option) any later version.
13
 
14
   GCC is distributed in the hope that it will be useful, but WITHOUT
15
   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
16
   or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
17
   License for more details.
18
 
19
   You should have received a copy of the GNU General Public License
20
   along with GCC; see the file COPYING3.  If not see
21
   <http://www.gnu.org/licenses/>.  */
22
 
23
#undef MD_EXEC_PREFIX
24
#undef MD_STARTFILE_PREFIX
25
 
26
/* Linux doesn't support saving and restoring 64-bit regs in a 32-bit
27
   process.  */
28
#define OS_MISSING_POWERPC64 1
29
 
30
/* We use glibc _mcount for profiling.  */
31
#define NO_PROFILE_COUNTERS 1
32
 
33
/* glibc has float and long double forms of math functions.  */
34
#undef  TARGET_C99_FUNCTIONS
35
#define TARGET_C99_FUNCTIONS (OPTION_GLIBC)
36
 
37
#undef  TARGET_OS_CPP_BUILTINS
38
#define TARGET_OS_CPP_BUILTINS()                \
39
  do                                            \
40
    {                                           \
41
      builtin_define_std ("PPC");               \
42
      builtin_define_std ("powerpc");           \
43
      builtin_assert ("cpu=powerpc");           \
44
      builtin_assert ("machine=powerpc");       \
45
      TARGET_OS_SYSV_CPP_BUILTINS ();           \
46
    }                                           \
47
  while (0)
48
 
49
#undef  CPP_OS_DEFAULT_SPEC
50
#define CPP_OS_DEFAULT_SPEC "%(cpp_os_linux)"
51
 
52
/* The GNU C++ standard library currently requires _GNU_SOURCE being
53
   defined on glibc-based systems. This temporary hack accomplishes this,
54
   it should go away as soon as libstdc++-v3 has a real fix.  */
55
#undef  CPLUSPLUS_CPP_SPEC
56
#define CPLUSPLUS_CPP_SPEC "-D_GNU_SOURCE %(cpp)"
57
 
58
#undef  LINK_SHLIB_SPEC
59
#define LINK_SHLIB_SPEC "%{shared:-shared} %{!shared: %{static:-static}}"
60
 
61
#undef  LIB_DEFAULT_SPEC
62
#define LIB_DEFAULT_SPEC "%(lib_linux)"
63
 
64
#undef  STARTFILE_DEFAULT_SPEC
65
#define STARTFILE_DEFAULT_SPEC "%(startfile_linux)"
66
 
67
#undef  ENDFILE_DEFAULT_SPEC
68
#define ENDFILE_DEFAULT_SPEC "%(endfile_linux)"
69
 
70
#undef  LINK_START_DEFAULT_SPEC
71
#define LINK_START_DEFAULT_SPEC "%(link_start_linux)"
72
 
73
#undef  LINK_OS_DEFAULT_SPEC
74
#define LINK_OS_DEFAULT_SPEC "%(link_os_linux)"
75
 
76
#define LINK_GCC_C_SEQUENCE_SPEC \
77
  "%{static:--start-group} %G %L %{static:--end-group}%{!static:%G}"
78
 
79
/* Use --as-needed -lgcc_s for eh support.  */
80
#ifdef HAVE_LD_AS_NEEDED
81
#define USE_LD_AS_NEEDED 1
82
#endif
83
 
84
#undef  TARGET_VERSION
85
#define TARGET_VERSION fprintf (stderr, " (PowerPC GNU/Linux)");
86
 
87
/* Override rs6000.h definition.  */
88
#undef  ASM_APP_ON
89
#define ASM_APP_ON "#APP\n"
90
 
91
/* Override rs6000.h definition.  */
92
#undef  ASM_APP_OFF
93
#define ASM_APP_OFF "#NO_APP\n"
94
 
95
/* For backward compatibility, we must continue to use the AIX
96
   structure return convention.  */
97
#undef  DRAFT_V4_STRUCT_RET
98
#define DRAFT_V4_STRUCT_RET 1
99
 
100
/* We are 32-bit all the time, so optimize a little.  */
101
#undef TARGET_64BIT
102
#define TARGET_64BIT 0
103
 
104
/* We don't need to generate entries in .fixup, except when
105
   -mrelocatable or -mrelocatable-lib is given.  */
106
#undef RELOCATABLE_NEEDS_FIXUP
107
#define RELOCATABLE_NEEDS_FIXUP \
108
  (target_flags & target_flags_explicit & MASK_RELOCATABLE)
109
 
110
#define TARGET_ASM_FILE_END file_end_indicate_exec_stack
111
 
112
#define TARGET_POSIX_IO
113
 
114
#define MD_UNWIND_SUPPORT "config/rs6000/linux-unwind.h"
115
 
116
#ifdef TARGET_LIBC_PROVIDES_SSP
117
/* ppc32 glibc provides __stack_chk_guard in -0x7008(2).  */
118
#define TARGET_THREAD_SSP_OFFSET        -0x7008
119
#endif
120
 
121
#define POWERPC_LINUX
122
 
123
/* ppc linux has 128-bit long double support in glibc 2.4 and later.  */
124
#ifdef TARGET_DEFAULT_LONG_DOUBLE_128
125
#define RS6000_DEFAULT_LONG_DOUBLE_SIZE 128
126
#endif

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.