libstdc++: Fix typo in chrono::year_month_weekday::operator==
[gcc.git] / libatomic / configure.tgt
1 # -*- shell-script -*-
2 # Copyright (C) 2012-2020 Free Software Foundation, Inc.
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
29 # Give operating systems the opportunity to discard XCFLAGS modifications based
30 # on ${target_cpu}. For example to allow proper use of multilibs.
31 configure_tgt_pre_target_cpu_XCFLAGS="${XCFLAGS}"
32
33 case "${target_cpu}" in
34 alpha*)
35 # fenv.c needs this option to generate inexact exceptions.
36 XCFLAGS="${XCFLAGS} -mfp-trap-mode=sui"
37 ARCH=alpha
38 ;;
39 rs6000 | powerpc*) ARCH=powerpc ;;
40 riscv*) ARCH=riscv ;;
41 sh*) ARCH=sh ;;
42
43 aarch64*)
44 ARCH=aarch64
45 case "${target}" in
46 aarch64*-*-linux*)
47 if test -n "$enable_aarch64_lse"; then
48 try_ifunc=yes
49 fi
50 ;;
51 esac
52 ;;
53 arm*)
54 ARCH=arm
55 case "${target}" in
56 arm*-*-freebsd* | arm*-*-netbsd*)
57 ;;
58 *)
59 # ??? Detect when -march=armv7 is already enabled.
60 try_ifunc=yes
61 ;;
62 esac
63 ;;
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
86 *" -m64 "*|*" -mx32 "*)
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)
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
107 ARCH=x86
108 # ??? Detect when -mcx16 is already enabled.
109 try_ifunc=yes
110 ;;
111
112 *) ARCH="${target_cpu}" ;;
113 esac
114
115 # The cpu configury is always most relevant.
116 if test -d ${srcdir}/config/$ARCH ; then
117 config_path="$ARCH"
118 fi
119
120 tmake_file=
121 # Other system configury
122 case "${target}" in
123 aarch64*-*-linux*)
124 # OS support for atomic primitives.
125 config_path="${config_path} linux/aarch64 posix"
126 ;;
127
128 arm*-*-linux* | arm*-*-uclinux*)
129 # OS support for atomic primitives.
130 config_path="${config_path} linux/arm posix"
131 ;;
132
133 s390*-*-linux*)
134 # OS support for atomic primitives.
135 config_path="${config_path} s390 posix"
136 ;;
137
138 powerpc*-*-aix*)
139 config_path="${config_path} posix"
140 tmake_file="t-aix"
141 ;;
142
143 *-*-linux* | *-*-gnu* | *-*-k*bsd*-gnu \
144 | *-*-netbsd* | *-*-freebsd* | *-*-openbsd* | *-*-dragonfly* \
145 | *-*-solaris2* | *-*-sysv4* | *-*-irix6* | *-*-osf* | *-*-hpux11* \
146 | *-*-darwin* | *-*-aix* | *-*-cygwin*)
147 # POSIX system. The OS is supported.
148 config_path="${config_path} posix"
149 ;;
150
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 ;;
162
163 *-*-rtems*)
164 XCFLAGS="${configure_tgt_pre_target_cpu_XCFLAGS}"
165 config_path="rtems"
166 ;;
167
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
177 *)
178 # Who are you?
179 UNSUPPORTED=1
180 ;;
181 esac
182
183 # glibc will pass hwcap to ifunc resolver functions as an argument.
184 # The type may be different on different architectures.
185 case "${target}" in
186 aarch64*-*-*)
187 IFUNC_RESOLVER_ARGS="uint64_t hwcap"
188 ;;
189 *)
190 IFUNC_RESOLVER_ARGS="void"
191 ;;
192 esac