]> git.ipfire.org Git - thirdparty/gcc.git/blame - libphobos/configure.tgt
libphobos, Darwin: Enable libphobos for most Darwin.
[thirdparty/gcc.git] / libphobos / configure.tgt
CommitLineData
260eedb9 1# -*- shell-script -*-
83ffe9cd 2# Copyright (C) 2018-2023 Free Software Foundation, Inc.
260eedb9
IB
3#
4# GCC is free software; you can redistribute it and/or modify
5# it under the terms of the GNU General Public License as published by
6# the Free Software Foundation; either version 3, or (at your option)
7# any later version.
8#
9# GCC is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12# GNU General Public License for more details.
13#
14# You should have received a copy of the GNU General Public License
15# along with GCC; see the file COPYING3. If not see
16# <http://www.gnu.org/licenses/>.
17
18# This is the target specific configuration file. This is invoked by the
19# autoconf generated configure script. Putting it in a separate shell file
20# lets us skip running autoconf when modifying target specific information.
21
22# Disable the libphobos or libdruntime components on untested or known
23# broken systems. More targets shall be added after testing.
7d31d331 24LIBPHOBOS_SUPPORTED=no
261bd78d 25LIBDRUNTIME_ONLY=auto
260eedb9 26case "${target}" in
fa9091ad
IB
27 *-*-dragonfly*)
28 LIBPHOBOS_SUPPORTED=yes
29 ;;
fe805c44
IS
30 aarch64-*-darwin2*)
31 LIBPHOBOS_SUPPORTED=yes
32 ;;
a0128060
IB
33 aarch64*-*-linux*)
34 LIBPHOBOS_SUPPORTED=yes
35 ;;
260eedb9 36 arm*-*-linux*)
7d31d331 37 LIBPHOBOS_SUPPORTED=yes
260eedb9 38 ;;
c8086357
IB
39 hppa-*-linux*)
40 LIBPHOBOS_SUPPORTED=yes
41 ;;
260eedb9 42 mips*-*-linux*)
7d31d331 43 LIBPHOBOS_SUPPORTED=yes
260eedb9 44 ;;
0c3fc06c
IB
45 power*-*-freebsd*)
46 LIBPHOBOS_SUPPORTED=yes
47 ;;
1b0cbe05
IB
48 power*-*-linux*)
49 LIBPHOBOS_SUPPORTED=yes
50 LIBDRUNTIME_ONLY=yes
51 ;;
d9392bfa
IB
52 riscv*-*-linux*)
53 LIBPHOBOS_SUPPORTED=yes
54 ;;
130cc10e
IB
55 s390*-linux*)
56 LIBPHOBOS_SUPPORTED=yes
57 ;;
1375e2b6
RO
58 sparc*-*-solaris2.11*)
59 LIBPHOBOS_SUPPORTED=yes
60 ;;
fe805c44
IS
61 *-*-darwin9* | *-*-darwin1[01]*)
62 LIBDRUNTIME_ONLY=yes
63 ;;
64 x86_64-*-darwin1[2-9]* | x86_64-*-darwin2* | i?86-*-darwin1[2-7])
65 LIBPHOBOS_SUPPORTED=yes
66 ;;
e855b30c
IB
67 x86_64-*-freebsd* | i?86-*-freebsd*)
68 LIBPHOBOS_SUPPORTED=yes
69 ;;
260eedb9 70 x86_64-*-kfreebsd*-gnu | i?86-*-kfreebsd*-gnu)
7d31d331 71 LIBPHOBOS_SUPPORTED=yes
260eedb9
IB
72 ;;
73 x86_64-*-linux* | i?86-*-linux*)
7d31d331 74 LIBPHOBOS_SUPPORTED=yes
260eedb9 75 ;;
2f2b8e40 76 x86_64-*-netbsd* | i?86-*-netbsd*)
7d31d331 77 LIBPHOBOS_SUPPORTED=yes
2f2b8e40 78 ;;
7d31d331
RO
79 x86_64-*-solaris2.11* | i?86-*-solaris2.11*)
80 LIBPHOBOS_SUPPORTED=yes
260eedb9
IB
81 ;;
82esac