1 /* Definitions for Linux for S/390.
2 Copyright (C) 1999, 2000, 2001, 2002, 2004 Free Software Foundation, Inc.
3 Contributed by Hartmut Penner (hpenner@de.ibm.com) and
4 Ulrich Weigand (uweigand@de.ibm.com).
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 2, or (at your option) any later
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING. If not, write to the Free
20 Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
26 /* Target specific version string. */
28 #ifdef DEFAULT_TARGET_64BIT
30 #define TARGET_VERSION fprintf (stderr, " (Linux for zSeries)");
33 #define TARGET_VERSION fprintf (stderr, " (Linux for S/390)");
37 /* Target specific type definitions. */
39 /* ??? Do we really want long as size_t on 31-bit? */
41 #define SIZE_TYPE (TARGET_64BIT ? "long unsigned int" : "long unsigned int")
43 #define PTRDIFF_TYPE (TARGET_64BIT ? "long int" : "int")
46 #define WCHAR_TYPE "int"
47 #undef WCHAR_TYPE_SIZE
48 #define WCHAR_TYPE_SIZE 32
51 /* Target specific preprocessor settings. */
53 #define TARGET_OS_CPP_BUILTINS() \
56 LINUX_TARGET_OS_CPP_BUILTINS(); \
59 builtin_define ("__PIC__"); \
60 builtin_define ("__pic__"); \
66 /* Target specific assembler settings. */
69 #define ASM_SPEC "%{m31&m64}%{mesa&mzarch}%{march=*}"
72 /* Target specific linker settings. */
74 #ifdef DEFAULT_TARGET_64BIT
75 #define MULTILIB_DEFAULTS { "m64" }
77 #define MULTILIB_DEFAULTS { "m31" }
82 "%{m31:-m elf_s390}%{m64:-m elf64_s390} \
87 %{rdynamic:-export-dynamic} \
89 %{m31:-dynamic-linker /lib/ld.so.1} \
90 %{m64:-dynamic-linker /lib/ld64.so.1}}}}"
92 #define CPP_SPEC "%{posix:-D_POSIX_SOURCE} %{pthread:-D_REENTRANT}"
94 #define TARGET_ASM_FILE_END file_end_indicate_exec_stack
96 #define MD_UNWIND_SUPPORT "config/s390/linux-unwind.h"
98 #ifdef TARGET_LIBC_PROVIDES_SSP
99 /* s390 glibc provides __stack_chk_guard in 0x14(tp),
100 s390x glibc provides it at 0x28(tp). */
101 #define TARGET_THREAD_SSP_OFFSET (TARGET_64BIT ? 0x28 : 0x14)
104 /* Define if long doubles should be mangled as 'g'. */
105 #define TARGET_ALTERNATE_LONG_DOUBLE_MANGLING