]> git.ipfire.org Git - thirdparty/gcc.git/blame - libatomic/configure.tgt
Update copyright years.
[thirdparty/gcc.git] / libatomic / configure.tgt
CommitLineData
48310492 1# -*- shell-script -*-
99dee823 2# Copyright (C) 2012-2021 Free Software Foundation, Inc.
48310492
RH
3# Contributed by Richard Henderson <rth@redhat.com>.
4#
5# This file is part of the GNU Atomic Library (libatomic).
6#
7# Libatomic is free software; you can redistribute it and/or modify it
8# under the terms of the GNU General Public License as published by
9# the Free Software Foundation; either version 3 of the License, or
10# (at your option) any later version.
11#
12# Libatomic is distributed in the hope that it will be useful, but WITHOUT ANY
13# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14# FOR A PARTICULAR PURPOSE. See the GNU General Public License for
15# more details.
16#
17# Under Section 7 of GPL version 3, you are granted additional
18# permissions described in the GCC Runtime Library Exception, version
19# 3.1, as published by the Free Software Foundation.
20#
21# You should have received a copy of the GNU General Public License and
22# a copy of the GCC Runtime Library Exception along with this program;
23# see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
24# <http://www.gnu.org/licenses/>.
25
26# Map the target cpu to an ARCH sub-directory. At the same time,
27# work out any special compilation flags as necessary.
28
c47194d2
SH
29# Give operating systems the opportunity to discard XCFLAGS modifications based
30# on ${target_cpu}. For example to allow proper use of multilibs.
31configure_tgt_pre_target_cpu_XCFLAGS="${XCFLAGS}"
32
48310492 33case "${target_cpu}" in
537b5312
UB
34 alpha*)
35 # fenv.c needs this option to generate inexact exceptions.
36 XCFLAGS="${XCFLAGS} -mfp-trap-mode=sui"
37 ARCH=alpha
38 ;;
48310492 39 rs6000 | powerpc*) ARCH=powerpc ;;
b906c007 40 riscv*) ARCH=riscv ;;
48310492
RH
41 sh*) ARCH=sh ;;
42
141abc6f
SE
43 aarch64*)
44 ARCH=aarch64
45 case "${target}" in
46 aarch64*-*-linux*)
9d0e85af
SE
47 if test -n "$enable_aarch64_lse"; then
48 try_ifunc=yes
49 fi
141abc6f
SE
50 ;;
51 esac
52 ;;
48310492
RH
53 arm*)
54 ARCH=arm
82a19768 55 case "${target}" in
b27c1082 56 arm*-*-freebsd* | arm*-*-netbsd*)
82a19768
AT
57 ;;
58 *)
59 # ??? Detect when -march=armv7 is already enabled.
60 try_ifunc=yes
61 ;;
62 esac
63 ;;
48310492
RH
64 sparc)
65 case " ${CC} ${CFLAGS} " in
66 *" -m64 "*)
67 ;;
68 *)
69 if test -z "$with_cpu"; then
70 XCFLAGS="${XCFLAGS} -mcpu=v9"
71 fi
72 esac
73 ARCH=sparc
74 ;;
75 sparc64|sparcv9)
76 case " ${CC} ${CFLAGS} " in
77 *" -m32 "*)
78 XCFLAGS="${XCFLAGS} -mcpu=v9"
79 ;;
80 esac
81 ARCH=sparc
82 ;;
83
84 i[3456]86)
85 case " ${CC} ${CFLAGS} " in
5eb4cb47 86 *" -m64 "*|*" -mx32 "*)
48310492
RH
87 ;;
88 *)
89 if test -z "$with_arch"; then
90 XCFLAGS="${XCFLAGS} -march=i486 -mtune=${target_cpu}"
91 XCFLAGS="${XCFLAGS} -fomit-frame-pointer"
92 fi
93 esac
94 ARCH=x86
95 # ??? Detect when -march=i686 is already enabled.
96 try_ifunc=yes
97 ;;
98 x86_64)
3dd7e092
L
99 case " ${CC} ${CFLAGS} " in
100 *" -m32 "*)
101 XCFLAGS="${XCFLAGS} -march=i486 -mtune=generic"
102 XCFLAGS="${XCFLAGS} -fomit-frame-pointer"
103 ;;
104 *)
105 ;;
106 esac
48310492
RH
107 ARCH=x86
108 # ??? Detect when -mcx16 is already enabled.
109 try_ifunc=yes
110 ;;
111
112 *) ARCH="${target_cpu}" ;;
113esac
114
115# The cpu configury is always most relevant.
116if test -d ${srcdir}/config/$ARCH ; then
117 config_path="$ARCH"
118fi
119
47ddb895 120tmake_file=
48310492
RH
121# Other system configury
122case "${target}" in
141abc6f
SE
123 aarch64*-*-linux*)
124 # OS support for atomic primitives.
125 config_path="${config_path} linux/aarch64 posix"
126 ;;
127
b1e21e5a 128 arm*-*-linux* | arm*-*-uclinux*)
48310492
RH
129 # OS support for atomic primitives.
130 config_path="${config_path} linux/arm posix"
131 ;;
132
a4c6bd08
AK
133 s390*-*-linux*)
134 # OS support for atomic primitives.
135 config_path="${config_path} s390 posix"
136 ;;
137
47ddb895
DE
138 powerpc*-*-aix*)
139 config_path="${config_path} posix"
140 tmake_file="t-aix"
141 ;;
142
48310492 143 *-*-linux* | *-*-gnu* | *-*-k*bsd*-gnu \
b6735e76 144 | *-*-netbsd* | *-*-freebsd* | *-*-openbsd* | *-*-dragonfly* \
48310492 145 | *-*-solaris2* | *-*-sysv4* | *-*-irix6* | *-*-osf* | *-*-hpux11* \
6fe8c024 146 | *-*-darwin* | *-*-aix* | *-*-cygwin*)
48310492
RH
147 # POSIX system. The OS is supported.
148 config_path="${config_path} posix"
149 ;;
150
dc3368d0
KT
151 *-*-mingw*)
152 # OS support for atomic primitives.
153 case ${target_thread_file} in
154 win32)
155 config_path="${config_path} mingw"
156 ;;
157 posix)
158 config_path="${config_path} posix"
159 ;;
160 esac
161 ;;
c47194d2
SH
162
163 *-*-rtems*)
164 XCFLAGS="${configure_tgt_pre_target_cpu_XCFLAGS}"
165 config_path="rtems"
166 ;;
167
48310492
RH
168 *-*-elf*)
169 # ??? No target OS. We could be targeting bare-metal kernel-mode,
170 # or user-mode for some custom OS. If the target supports TAS,
171 # we can build our own spinlocks, given there are no signals.
172 # If the target supports disabling interrupts, we can work in
173 # kernel-mode, given the system is not multi-processor.
174 UNSUPPORTED=1
175 ;;
176
15545563
TV
177 nvptx*-*-*)
178 ;;
179
48310492
RH
180 *)
181 # Who are you?
182 UNSUPPORTED=1
183 ;;
184esac
141abc6f
SE
185
186# glibc will pass hwcap to ifunc resolver functions as an argument.
187# The type may be different on different architectures.
188case "${target}" in
189 aarch64*-*-*)
190 IFUNC_RESOLVER_ARGS="uint64_t hwcap"
191 ;;
192 *)
193 IFUNC_RESOLVER_ARGS="void"
194 ;;
195esac