fbdd5d8715
gcc: PR target/39150 * configure.ac (gcc_cv_as_hidden): Also accept x86_64-*-solaris2.1[0-9]*. (gcc_cv_as_cfi_directive): Likewise. (gcc_cv_as_comdat_group_group): Likewise. (set_have_as_tls): Likewise. * configure: Regenerate. * config.gcc (i[34567]86-*-solaris2*): Also handle x86_64-*-solaris2.1[0-9]*. * config.host (i[34567]86-*-solaris2*): Likewise. * config/sparc/sol2.h (ASM_CPU_DEFAULT_SPEC): Remove. * config/sol2-bi.h (ASM_CPU_DEFAULT_SPEC): Redefine. [USE_GLD] (ARCH_DEFAULT_EMULATION): Define. (TARGET_LD_EMULATION): Use it. * config/i386/sol2.h (ASM_CPU_DEFAULT_SPEC): Define. (SUBTARGET_CPU_EXTRA_SPECS): Add asm_cpu_default. * config/i386/sol2-bi.h (ASM_CPU32_DEFAULT_SPEC): Define. (ASM_CPU64_DEFAULT_SPEC): Define. (ASM_CPU_SPEC): Use %(asm_cpu_default). (ASM_SPEC): Redefine. (DEFAULT_ARCH32_P): Define using TARGET_64BIT_DEFAULT. * config/host-solaris.c [__x86_64__] (TRY_EMPTY_VM_SPACE): Reduce. * doc/install.texi (Specific, amd64-*-solaris2.1[0-9]*): Document. (Specific, i?86-*-solaris2.10): Mention x86_64-*-solaris2.1[0-9]* configuration. (Specific, x86_64-*-solaris2.1[0-9]*): Document. gcc/ada: PR target/39150 * gcc-interface/Makefile.in: Handle x86_64-solaris2. libgcc: PR target/39150 * config.host (*-*-solaris2*): Handle x86_64-*-solaris2.1[0-9]* like i?86-*-solaris2.1[0-9]*. (i[34567]86-*-solaris2*): Also handle x86_64-*-solaris2.1[0-9]*. * configure.ac (i?86-*-solaris2*): Likewise. * configure: Regenerate. gcc/testsuite: PR target/39150 * gcc.misc-tests/linkage.exp: Handle x86_64-*-solaris2.1[0-9]*. toplevel: PR target/39150 * configure.ac (i[3456789]86-*-solaris2*): Also accept x86_64-*-solaris2.1[0-9]*. * configure: Regenerate. boehm-gc: PR target/39150 * configure.ac (i?86-*-solaris2.[89]): Also accept x86_64-*-solaris2.1?. * configure: Regenerate. gnattools: PR target/39150 * configure.ac (*86-*-solaris2*): Also accept x86_64-*-solaris2.1[0-9]*. * configure: Regenerate. libcpp: PR target/39150 * configure.ac (host_wide_int): Handle x86_64-*-solaris2.1[0-9] like i[34567]86-*-solaris2.1[0-9]*. * configure: Regenerate. libgo: PR target/39150 * config/libtool.m4: Handle x86_64-*-solaris2.1[0-9]* like i?86-*-solaris*. * configure: Regenerate. libjava: PR target/39150 * configure.host (x86_64-*): Add -Usun to libgcj_flags. (x86_64-*-solaris2.1[0-9]*): New case. (i?86-*-solaris2*): Also accept x86_64-*-solaris2.1[0-9]*. From-SVN: r175958
170 lines
4.8 KiB
Plaintext
170 lines
4.8 KiB
Plaintext
# Configure script for libada.
|
|
# Copyright 2003, 2004, 2009 Free Software Foundation, Inc.
|
|
#
|
|
# This file 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 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program 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 this program; see the file COPYING3. If not see
|
|
# <http://www.gnu.org/licenses/>.
|
|
|
|
sinclude(../config/acx.m4)
|
|
sinclude(../config/override.m4)
|
|
|
|
AC_INIT
|
|
AC_PREREQ([2.64])
|
|
|
|
AC_CONFIG_SRCDIR([Makefile.in])
|
|
|
|
# Command-line options.
|
|
# Very limited version of AC_MAINTAINER_MODE.
|
|
AC_ARG_ENABLE([maintainer-mode],
|
|
[AC_HELP_STRING([--enable-maintainer-mode],
|
|
[enable make rules and dependencies not useful (and
|
|
sometimes confusing) to the casual installer])],
|
|
[case ${enable_maintainer_mode} in
|
|
yes) MAINT='' ;;
|
|
no) MAINT='#' ;;
|
|
*) AC_MSG_ERROR([--enable-maintainer-mode must be yes or no]) ;;
|
|
esac
|
|
maintainer_mode=${enableval}],
|
|
[MAINT='#'])
|
|
AC_SUBST([MAINT])dnl
|
|
|
|
# Start of actual configure tests
|
|
|
|
AC_PROG_INSTALL
|
|
|
|
AC_CANONICAL_BUILD
|
|
AC_CANONICAL_HOST
|
|
AC_CANONICAL_TARGET
|
|
|
|
ACX_NONCANONICAL_TARGET
|
|
|
|
# Need to pass this down for now :-P
|
|
AC_PROG_LN_S
|
|
|
|
# Determine what to build for 'gnattools'
|
|
if test $build = $target ; then
|
|
# Note that build=target is almost certainly the wrong test; FIXME
|
|
default_gnattools_target="gnattools-native"
|
|
else
|
|
default_gnattools_target="gnattools-cross"
|
|
fi
|
|
AC_SUBST([default_gnattools_target])
|
|
|
|
# Target-specific stuff (defaults)
|
|
TOOLS_TARGET_PAIRS=
|
|
AC_SUBST(TOOLS_TARGET_PAIRS)
|
|
EXTRA_GNATTOOLS=
|
|
AC_SUBST(EXTRA_GNATTOOLS)
|
|
|
|
# Per-target case statement
|
|
# -------------------------
|
|
case "${target}" in
|
|
alpha*-dec-vx*) # Unlike all other Vxworks
|
|
;;
|
|
m68k*-wrs-vx* \
|
|
| powerpc*-wrs-vxworks \
|
|
| sparc*-wrs-vx* \
|
|
| *86-wrs-vxworks \
|
|
| mips*-wrs-vx*)
|
|
TOOLS_TARGET_PAIRS="mlib-tgt-specific.adb<mlib-tgt-specific-vxworks.adb"
|
|
;;
|
|
sparc-sun-solaris*)
|
|
TOOLS_TARGET_PAIRS="mlib-tgt-specific.adb<mlib-tgt-specific-solaris.adb"
|
|
;;
|
|
*86-*-solaris2* | x86_64-*-solaris2.1[[0-9]]*)
|
|
TOOLS_TARGET_PAIRS="mlib-tgt-specific.adb<mlib-tgt-specific-solaris.adb"
|
|
;;
|
|
*86-*-linux* \
|
|
| powerpc*-*-linux* \
|
|
| *ia64-*-linux* \
|
|
| alpha*-*-linux* \
|
|
| sparc*-*-linux* \
|
|
| hppa*-*-linux* \
|
|
| *x86_64-*-linux*)
|
|
TOOLS_TARGET_PAIRS="\
|
|
mlib-tgt-specific.adb<mlib-tgt-specific-linux.adb \
|
|
indepsw.adb<indepsw-gnu.adb"
|
|
;;
|
|
s390*-*-linux*)
|
|
TOOLS_TARGET_PAIRS="mlib-tgt-specific.adb<mlib-tgt-specific-linux.adb"
|
|
;;
|
|
*86-*-freebsd*)
|
|
TOOLS_TARGET_PAIRS="\
|
|
mlib-tgt-specific.adb<mlib-tgt-specific-linux.adb \
|
|
indepsw.adb<indepsw-gnu.adb"
|
|
;;
|
|
mips-sgi-irix*)
|
|
TOOLS_TARGET_PAIRS="mlib-tgt-specific.adb<mlib-tgt-specific-irix.adb"
|
|
;;
|
|
hppa*-hp-hpux10*) # Unlike hpux11
|
|
;;
|
|
hppa*-hp-hpux11*)
|
|
TOOLS_TARGET_PAIRS="mlib-tgt-specific.adb<mlib-tgt-specific-hpux.adb"
|
|
;;
|
|
*-ibm-aix*)
|
|
TOOLS_TARGET_PAIRS="\
|
|
mlib-tgt-specific.adb<mlib-tgt-specific-aix.adb \
|
|
indepsw.adb<indepsw-aix.adb"
|
|
;;
|
|
alpha*-dec-osf*)
|
|
TOOLS_TARGET_PAIRS="mlib-tgt-specific.adb<mlib-tgt-specific-tru64.adb"
|
|
;;
|
|
alpha*-dec-vms* | alpha*-dec-openvms* | alpha*-dec-vms* \
|
|
| alpha*-hp-vms* | alpha*-hp-openvms* | alpha*-hp-vms*)
|
|
TOOLS_TARGET_PAIRS="\
|
|
mlib-tgt-specific.adb<mlib-tgt-specific-vms-alpha.adb \
|
|
symbols.adb<symbols-vms.adb \
|
|
symbols-processing.adb<symbols-processing-vms-alpha.adb"
|
|
|
|
EXTRA_GNATTOOLS='../../gnatlbr$(exeext) ../../gnatsym$(exeext)'
|
|
;;
|
|
ia64*-dec-vms* | ia64*-dec-openvms* | ia64*-dec-vms* \
|
|
| ia64*-hp-vms* | ia64*-hp-openvms* | ia64*-hp-vms*)
|
|
TOOLS_TARGET_PAIRS="\
|
|
mlib-tgt-specific.adb<mlib-tgt-specific-vms-ia64.adb \
|
|
symbols.adb<symbols-vms.adb \
|
|
symbols-processing.adb<symbols-processing-vms-ia64.adb"
|
|
|
|
EXTRA_GNATTOOLS='../../gnatlbr$(exeext) ../../gnatsym$(exeext)'
|
|
;;
|
|
*-*-cygwin32* | *-*-mingw32* | *-*-pe)
|
|
TOOLS_TARGET_PAIRS="\
|
|
mlib-tgt-specific.adb<mlib-tgt-specific-mingw.adb \
|
|
indepsw.adb<indepsw-mingw.adb"
|
|
EXTRA_GNATTOOLS='../../gnatdll$(exeext)'
|
|
;;
|
|
*-*-darwin*)
|
|
TOOLS_TARGET_PAIRS="mlib-tgt-specific.adb<mlib-tgt-specific-darwin.adb"
|
|
;;
|
|
*-*-lynxos)
|
|
TOOLS_TARGET_PAIRS="\
|
|
mlib-tgt-specific.adb<mlib-tgt-specific-lynxos.adb \
|
|
indepsw.adb<indepsw-gnu.adb"
|
|
;;
|
|
esac
|
|
|
|
# From user or toplevel makefile.
|
|
AC_SUBST(ADA_CFLAGS)
|
|
|
|
AC_PROG_CC
|
|
warn_cflags=
|
|
if test "x$GCC" = "xyes"; then
|
|
warn_cflags='$(GCC_WARN_CFLAGS)'
|
|
fi
|
|
AC_SUBST(warn_cflags)
|
|
|
|
# Output: create a Makefile.
|
|
AC_CONFIG_FILES([Makefile])
|
|
|
|
AC_OUTPUT
|