aboutsummaryrefslogtreecommitdiff
path: root/libphobos/configure.tgt
diff options
context:
space:
mode:
authorIain Buclaw <ibuclaw@gdcproject.org>2018-10-31 09:44:31 +0000
committerIain Buclaw <ibuclaw@gcc.gnu.org>2018-10-31 09:44:31 +0000
commit260eedb901c1b3df69598a724e23e33674ab654b (patch)
tree10a9f6234a9102bf5882d279f041372de9c32588 /libphobos/configure.tgt
parentd400fda3a8c3330f77eb9d51874f5482d3819a9f (diff)
downloadgcc-260eedb901c1b3df69598a724e23e33674ab654b.zip
gcc-260eedb901c1b3df69598a724e23e33674ab654b.tar.gz
gcc-260eedb901c1b3df69598a724e23e33674ab654b.tar.bz2
re PR d/87788 (Support D on x86_64-apple-darwin*)
ChangeLog: 2018-10-31 Iain Buclaw <ibuclaw@gdcproject.org> PR bootstrap/87788 PR d/87799 * configure: Rebuild. * configure.ac: Disable D on systems where it is known not to work. libphobos/ChangeLog: 2018-10-31 Iain Buclaw <ibuclaw@gdcproject.org> PR bootstrap/87789 PR d/87818 PR d/87819 * configure.tgt: New file. From-SVN: r265658
Diffstat (limited to 'libphobos/configure.tgt')
-rw-r--r--libphobos/configure.tgt36
1 files changed, 36 insertions, 0 deletions
diff --git a/libphobos/configure.tgt b/libphobos/configure.tgt
new file mode 100644
index 0000000..8afd350
--- /dev/null
+++ b/libphobos/configure.tgt
@@ -0,0 +1,36 @@
+# -*- shell-script -*-
+# Copyright (C) 2018 Free Software Foundation, Inc.
+#
+# GCC is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 3, or (at your option)
+# any later version.
+#
+# GCC is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GCC; see the file COPYING3. If not see
+# <http://www.gnu.org/licenses/>.
+
+# This is the target specific configuration file. This is invoked by the
+# autoconf generated configure script. Putting it in a separate shell file
+# lets us skip running autoconf when modifying target specific information.
+
+# Disable the libphobos or libdruntime components on untested or known
+# broken systems. More targets shall be added after testing.
+case "${target}" in
+ arm*-*-linux*)
+ ;;
+ mips*-*-linux*)
+ ;;
+ x86_64-*-kfreebsd*-gnu | i?86-*-kfreebsd*-gnu)
+ ;;
+ x86_64-*-linux* | i?86-*-linux*)
+ ;;
+ *)
+ UNSUPPORTED=1
+ ;;
+esac