From c14a30f3b0f1ce1407c80085297dbc3b3011edeb Mon Sep 17 00:00:00 2001 From: "James K. Lowden" <jklowden@symas.com> Date: Wed, 5 Feb 2025 07:45:44 -0500 Subject: [PATCH] add configure.tgt from 2024-12-16 Matthias Klose! --- libgcobol/configure.tgt | 63 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 libgcobol/configure.tgt diff --git a/libgcobol/configure.tgt b/libgcobol/configure.tgt new file mode 100644 index 000000000000..717b28ea9159 --- /dev/null +++ b/libgcobol/configure.tgt @@ -0,0 +1,63 @@ +# -*- shell-script -*- +# Copyright (C) 2024 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 + *-linux*) + # checked Linux targets not yet working: + # armel armhf i386 s390x + case "${target}" in + aarch64*-*-linux*) + LIBGCOBOL_SUPPORTED=yes + ;; + loongarch*-*-linux*) + LIBGCOBOL_SUPPORTED=yes + ;; + mips*-*-linux*) + LIBGCOBOL_SUPPORTED=yes + ;; + power*-*-linux*) + LIBGCOBOL_SUPPORTED=yes + ;; + riscv*-*-linux*) + LIBGCOBOL_SUPPORTED=yes + ;; + x86_64-*-linux*) + LIBGCOBOL_SUPPORTED=yes + ;; + arm*-linux*|hppa*-linux*|i?86-*-linux*|s390*-*-linux*) + # checked with Debian builds + LIBGCOBOL_SUPPORTED=no + ;; + *) + LIBGCOBOL_SUPPORTED=no + ;; + esac + ;; + *-gnu) + LIBGCOBOL_SUPPORTED=yes + ;; + *) + LIBGCOBOL_SUPPORTED=no + ;; +esac -- GitLab