]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/config/xtensa/linux.h
Use SCALAR_TYPE_MODE in vect_create_epilog_for_reduction
[thirdparty/gcc.git] / gcc / config / xtensa / linux.h
CommitLineData
03984308
BW
1/* Xtensa Linux configuration.
2 Derived from the configuration for GCC for Intel i386 running Linux.
cbe34bb5 3 Copyright (C) 2001-2017 Free Software Foundation, Inc.
03984308
BW
4
5This file is part of GCC.
6
7GCC is free software; you can redistribute it and/or modify it under
8the terms of the GNU General Public License as published by the Free
2f83c7d6 9Software Foundation; either version 3, or (at your option) any later
03984308
BW
10version.
11
12GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13WARRANTY; without even the implied warranty of MERCHANTABILITY or
14FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15for more details.
16
17You should have received a copy of the GNU General Public License
2f83c7d6
NC
18along with GCC; see the file COPYING3. If not see
19<http://www.gnu.org/licenses/>. */
03984308 20
107fd1c1 21#define TARGET_OS_CPP_BUILTINS() GNU_USER_TARGET_OS_CPP_BUILTINS()
624f0d60 22
6a2b287f
BW
23#undef SUBTARGET_CPP_SPEC
24#define SUBTARGET_CPP_SPEC "%{posix:-D_POSIX_SOURCE} %{pthread:-D_REENTRANT}"
25
416ea725
JM
26#undef SIZE_TYPE
27#define SIZE_TYPE "unsigned int"
28
29#undef PTRDIFF_TYPE
30#define PTRDIFF_TYPE "int"
31
9193479f
BW
32#undef WCHAR_TYPE
33#define WCHAR_TYPE "long int"
34
35#undef WCHAR_TYPE_SIZE
36#define WCHAR_TYPE_SIZE 32
37
03984308 38#undef ASM_SPEC
6cedbe44 39#define ASM_SPEC \
78a14252 40 "%{mtext-section-literals:--text-section-literals} \
6cedbe44
BW
41 %{mno-text-section-literals:--no-text-section-literals} \
42 %{mtarget-align:--target-align} \
43 %{mno-target-align:--no-target-align} \
44 %{mlongcalls:--longcalls} \
a024f514
MF
45 %{mno-longcalls:--no-longcalls} \
46 %{mauto-litpools:--auto-litpools} \
47 %{mno-auto-litpools:--no-auto-litpools}"
03984308 48
7bd85ce0
JM
49#define GLIBC_DYNAMIC_LINKER "/lib/ld.so.1"
50
03984308
BW
51#undef LINK_SPEC
52#define LINK_SPEC \
53 "%{shared:-shared} \
54 %{!shared: \
dabadc52
JM
55 %{!static: \
56 %{rdynamic:-export-dynamic} \
107fd1c1 57 -dynamic-linker " GNU_USER_DYNAMIC_LINKER "} \
dabadc52 58 %{static:-static}}"
03984308 59
03984308
BW
60#undef LOCAL_LABEL_PREFIX
61#define LOCAL_LABEL_PREFIX "."
62
03984308
BW
63/* Always enable "-fpic" for Xtensa Linux. */
64#define XTENSA_ALWAYS_PIC 1
6c633d45 65
416ea725
JM
66#undef DBX_REGISTER_NUMBER
67