Ben Elliston | bce1b48 | 1998-09-30 02:13:15 +0000 | [diff] [blame] | 1 | # Process this file with autoconf to produce a configure script. |
Jakub Jelinek | 5624e56 | 2015-01-05 13:33:28 +0100 | [diff] [blame] | 2 | # Copyright (C) 1994-2015 Free Software Foundation, Inc. |
Nathanael Nerode | 9c01f39 | 2004-04-09 11:43:02 +0000 | [diff] [blame] | 3 | # Originally contributed by Dave Love (d.love@dl.ac.uk). |
Ben Elliston | bce1b48 | 1998-09-30 02:13:15 +0000 | [diff] [blame] | 4 | # |
Nathanael Nerode | 9c01f39 | 2004-04-09 11:43:02 +0000 | [diff] [blame] | 5 | #This file is part of GCC. |
Ben Elliston | bce1b48 | 1998-09-30 02:13:15 +0000 | [diff] [blame] | 6 | # |
Nathanael Nerode | 9c01f39 | 2004-04-09 11:43:02 +0000 | [diff] [blame] | 7 | #GCC is free software; you can redistribute it and/or modify |
Ben Elliston | bce1b48 | 1998-09-30 02:13:15 +0000 | [diff] [blame] | 8 | #it under the terms of the GNU General Public License as published by |
Jakub Jelinek | 748086b | 2009-04-09 17:00:19 +0200 | [diff] [blame] | 9 | #the Free Software Foundation; either version 3, or (at your option) |
Ben Elliston | bce1b48 | 1998-09-30 02:13:15 +0000 | [diff] [blame] | 10 | #any later version. |
| 11 | # |
Nathanael Nerode | 9c01f39 | 2004-04-09 11:43:02 +0000 | [diff] [blame] | 12 | #GCC is distributed in the hope that it will be useful, |
Ben Elliston | bce1b48 | 1998-09-30 02:13:15 +0000 | [diff] [blame] | 13 | #but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 15 | #GNU General Public License for more details. |
| 16 | # |
| 17 | #You should have received a copy of the GNU General Public License |
Jakub Jelinek | 748086b | 2009-04-09 17:00:19 +0200 | [diff] [blame] | 18 | #along with GCC; see the file COPYING3. If not see |
| 19 | #<http://www.gnu.org/licenses/>. |
Ben Elliston | bce1b48 | 1998-09-30 02:13:15 +0000 | [diff] [blame] | 20 | |
Ralf Wildenhues | df58e64 | 2009-08-24 19:08:51 +0000 | [diff] [blame] | 21 | AC_PREREQ(2.64) |
Andrew Pinski | 684c64b | 2004-06-11 20:11:12 +0000 | [diff] [blame] | 22 | AC_INIT(package-unused, version-unused,, libobjc) |
Nathanael Nerode | 252dde6 | 2004-04-09 12:40:59 +0000 | [diff] [blame] | 23 | AC_CONFIG_SRCDIR([objc/objc.h]) |
Paolo Bonzini | 215c351 | 2005-02-28 13:26:36 +0000 | [diff] [blame] | 24 | GCC_TOPLEV_SUBDIRS |
Ben Elliston | bce1b48 | 1998-09-30 02:13:15 +0000 | [diff] [blame] | 25 | |
Nathanael Nerode | 252dde6 | 2004-04-09 12:40:59 +0000 | [diff] [blame] | 26 | # We need the following definitions because AC_PROG_LIBTOOL relies on them |
Nathanael Nerode | 1fcfac9 | 2004-04-09 11:50:51 +0000 | [diff] [blame] | 27 | PACKAGE=libobjc |
Nathanael Nerode | 252dde6 | 2004-04-09 12:40:59 +0000 | [diff] [blame] | 28 | # Version is pulled out to make it a bit easier to change using sed. |
Nicola Pero | c7907a5 | 2011-06-08 08:24:15 +0000 | [diff] [blame] | 29 | VERSION=4:0:0 |
Nathanael Nerode | 1fcfac9 | 2004-04-09 11:50:51 +0000 | [diff] [blame] | 30 | AC_SUBST(VERSION) |
| 31 | |
Alexandre Oliva | 6706f11 | 2002-05-08 04:38:00 +0000 | [diff] [blame] | 32 | # This works around the fact that libtool configuration may change LD |
| 33 | # for this particular configuration, but some shells, instead of |
| 34 | # keeping the changes in LD private, export them just because LD is |
| 35 | # exported. |
| 36 | ORIGINAL_LD_FOR_MULTILIBS=$LD |
| 37 | |
Nathanael Nerode | 252dde6 | 2004-04-09 12:40:59 +0000 | [diff] [blame] | 38 | # ------- |
| 39 | # Options |
| 40 | # ------- |
| 41 | |
Nathanael Nerode | 252dde6 | 2004-04-09 12:40:59 +0000 | [diff] [blame] | 42 | # We use these options to decide which functions to include. |
| 43 | AC_ARG_WITH(target-subdir, |
| 44 | [ --with-target-subdir=SUBDIR |
| 45 | configuring in a subdirectory]) |
| 46 | AC_ARG_WITH(cross-host, |
| 47 | [ --with-cross-host=HOST configuring with a cross compiler]) |
| 48 | |
| 49 | AC_MSG_CHECKING([for --enable-version-specific-runtime-libs]) |
| 50 | AC_ARG_ENABLE(version-specific-runtime-libs, |
| 51 | [ --enable-version-specific-runtime-libs Specify that runtime libraries should be installed in a compiler-specific directory ], |
| 52 | [case "$enableval" in |
| 53 | yes) version_specific_libs=yes ;; |
| 54 | no) version_specific_libs=no ;; |
| 55 | *) AC_MSG_ERROR([Unknown argument to enable/disable version-specific libs]);; |
| 56 | esac], |
| 57 | [version_specific_libs=no]) |
| 58 | AC_MSG_RESULT($version_specific_libs) |
| 59 | |
| 60 | AC_ARG_ENABLE(objc-gc, |
| 61 | [ --enable-objc-gc enable the use of Boehm's garbage collector with |
| 62 | the GNU Objective-C runtime.], |
| 63 | [case $enable_objc_gc in |
David Ayers | 8c3e522 | 2006-01-24 22:57:22 +0100 | [diff] [blame] | 64 | no) |
Rainer Orth | b98b952 | 2011-04-15 09:26:05 +0000 | [diff] [blame] | 65 | OBJC_GCFLAGS='' |
David Ayers | 8c3e522 | 2006-01-24 22:57:22 +0100 | [diff] [blame] | 66 | OBJC_BOEHM_GC='' |
| 67 | OBJC_BOEHM_GC_INCLUDES='' |
| 68 | ;; |
| 69 | *) |
Rainer Orth | b98b952 | 2011-04-15 09:26:05 +0000 | [diff] [blame] | 70 | OBJC_GCFLAGS='-DOBJC_WITH_GC=1' |
| 71 | OBJC_BOEHM_GC='libobjc_gc$(libsuffix).la' |
David Ayers | 8c3e522 | 2006-01-24 22:57:22 +0100 | [diff] [blame] | 72 | OBJC_BOEHM_GC_INCLUDES='-I$(top_srcdir)/../boehm-gc/include -I../boehm-gc/include' |
| 73 | ;; |
Nathanael Nerode | 252dde6 | 2004-04-09 12:40:59 +0000 | [diff] [blame] | 74 | esac], |
Rainer Orth | b98b952 | 2011-04-15 09:26:05 +0000 | [diff] [blame] | 75 | [OBJC_GCFLAGS=''; OBJC_BOEHM_GC=''; OBJC_BOEHM_GC_INCLUDES='']) |
| 76 | AC_SUBST(OBJC_GCFLAGS) |
Nathanael Nerode | 252dde6 | 2004-04-09 12:40:59 +0000 | [diff] [blame] | 77 | AC_SUBST(OBJC_BOEHM_GC) |
David Ayers | 8c3e522 | 2006-01-24 22:57:22 +0100 | [diff] [blame] | 78 | AC_SUBST(OBJC_BOEHM_GC_INCLUDES) |
Nathanael Nerode | 252dde6 | 2004-04-09 12:40:59 +0000 | [diff] [blame] | 79 | |
| 80 | # ----------- |
| 81 | # Directories |
| 82 | # ----------- |
Nathanael Nerode | 9c01f39 | 2004-04-09 11:43:02 +0000 | [diff] [blame] | 83 | |
Geoffrey Keating | 5b043f0 | 2006-10-15 07:42:57 +0000 | [diff] [blame] | 84 | # Find the rest of the source tree framework. |
| 85 | AM_ENABLE_MULTILIB(, ..) |
DJ Delorie | aebb8c2 | 2002-06-25 23:53:45 -0400 | [diff] [blame] | 86 | |
Franz Sirl | b150efe | 2002-02-11 18:10:05 +0000 | [diff] [blame] | 87 | AC_CANONICAL_SYSTEM |
Nathanael Nerode | 1506eac | 2004-08-28 11:18:12 +0000 | [diff] [blame] | 88 | ACX_NONCANONICAL_TARGET |
Franz Sirl | b150efe | 2002-02-11 18:10:05 +0000 | [diff] [blame] | 89 | |
Nathanael Nerode | af0c82b | 2004-04-09 12:49:16 +0000 | [diff] [blame] | 90 | # Export source directory. |
Nathanael Nerode | 9c01f39 | 2004-04-09 11:43:02 +0000 | [diff] [blame] | 91 | # These need to be absolute paths, yet at the same time need to |
| 92 | # canonicalize only relative paths, because then amd will not unmount |
| 93 | # drives. Thus the use of PWDCMD: set it to 'pawd' or 'amq -w' if using amd. |
Nathanael Nerode | 9c01f39 | 2004-04-09 11:43:02 +0000 | [diff] [blame] | 94 | case $srcdir in |
Nathanael Nerode | 252dde6 | 2004-04-09 12:40:59 +0000 | [diff] [blame] | 95 | [\\/$]* | ?:[\\/]*) glibcpp_srcdir=${srcdir} ;; |
| 96 | *) glibcpp_srcdir=`cd "$srcdir" && ${PWDCMD-pwd} || echo "$srcdir"` ;; |
Nathanael Nerode | 9c01f39 | 2004-04-09 11:43:02 +0000 | [diff] [blame] | 97 | esac |
Nathanael Nerode | 9c01f39 | 2004-04-09 11:43:02 +0000 | [diff] [blame] | 98 | AC_SUBST(glibcpp_srcdir) |
| 99 | |
Nathanael Nerode | 608e1e0 | 2004-04-09 13:08:31 +0000 | [diff] [blame] | 100 | # Calculate toolexeclibdir |
Nathanael Nerode | a42a57c | 2004-04-14 20:08:02 +0000 | [diff] [blame] | 101 | # Also toolexecdir, though it's only used in toolexeclibdir |
Nathanael Nerode | 9c01f39 | 2004-04-09 11:43:02 +0000 | [diff] [blame] | 102 | case ${version_specific_libs} in |
| 103 | yes) |
| 104 | # Need the gcc compiler version to know where to install libraries |
| 105 | # and header files if --enable-version-specific-runtime-libs option |
| 106 | # is selected. |
Nathanael Nerode | a42a57c | 2004-04-14 20:08:02 +0000 | [diff] [blame] | 107 | toolexecdir='$(libdir)/gcc/$(target_noncanonical)' |
Zack Weinberg | 2b37e3d | 2005-03-21 17:42:26 +0000 | [diff] [blame] | 108 | toolexeclibdir='$(toolexecdir)/$(gcc_version)$(MULTISUBDIR)' |
Nathanael Nerode | 9c01f39 | 2004-04-09 11:43:02 +0000 | [diff] [blame] | 109 | ;; |
| 110 | no) |
| 111 | if test -n "$with_cross_host" && |
| 112 | test x"$with_cross_host" != x"no"; then |
Nathanael Nerode | 9c01f39 | 2004-04-09 11:43:02 +0000 | [diff] [blame] | 113 | # Install a library built with a cross compiler in tooldir, not libdir. |
Nathanael Nerode | a42a57c | 2004-04-14 20:08:02 +0000 | [diff] [blame] | 114 | toolexecdir='$(exec_prefix)/$(target_noncanonical)' |
Nathanael Nerode | 608e1e0 | 2004-04-09 13:08:31 +0000 | [diff] [blame] | 115 | toolexeclibdir='$(toolexecdir)/lib' |
| 116 | else |
Nathanael Nerode | a42a57c | 2004-04-14 20:08:02 +0000 | [diff] [blame] | 117 | toolexecdir='$(libdir)/gcc-lib/$(target_noncanonical)' |
Nathanael Nerode | 608e1e0 | 2004-04-09 13:08:31 +0000 | [diff] [blame] | 118 | toolexeclibdir='$(libdir)' |
Nathanael Nerode | 9c01f39 | 2004-04-09 11:43:02 +0000 | [diff] [blame] | 119 | fi |
| 120 | multi_os_directory=`$CC -print-multi-os-directory` |
| 121 | case $multi_os_directory in |
| 122 | .) ;; # Avoid trailing /. |
Nathanael Nerode | 608e1e0 | 2004-04-09 13:08:31 +0000 | [diff] [blame] | 123 | *) toolexeclibdir=$toolexeclibdir/$multi_os_directory ;; |
Nathanael Nerode | 9c01f39 | 2004-04-09 11:43:02 +0000 | [diff] [blame] | 124 | esac |
| 125 | ;; |
| 126 | esac |
Nathanael Nerode | a42a57c | 2004-04-14 20:08:02 +0000 | [diff] [blame] | 127 | AC_SUBST(toolexecdir) |
Nathanael Nerode | 608e1e0 | 2004-04-09 13:08:31 +0000 | [diff] [blame] | 128 | AC_SUBST(toolexeclibdir) |
Nathanael Nerode | 9c01f39 | 2004-04-09 11:43:02 +0000 | [diff] [blame] | 129 | |
Andrew Pinski | ff65de7 | 2004-05-25 22:39:02 +0000 | [diff] [blame] | 130 | # Figure out if we want to name the include directory and the |
| 131 | # library name changes differently. |
Andrew Pinski | 7d34a5a | 2004-05-26 01:21:46 +0000 | [diff] [blame] | 132 | includedirname=include |
Andrew Pinski | 45d5f86 | 2007-06-02 01:35:59 +0000 | [diff] [blame] | 133 | libsuffix= |
Andrew Pinski | ff65de7 | 2004-05-25 22:39:02 +0000 | [diff] [blame] | 134 | case "${host}" in |
| 135 | *-darwin*) |
| 136 | # Darwin is the only target so far that needs a different include directory. |
Andrew Pinski | 7d34a5a | 2004-05-26 01:21:46 +0000 | [diff] [blame] | 137 | includedirname=include-gnu-runtime |
Andrew Pinski | af333b9 | 2007-06-03 20:38:37 +0000 | [diff] [blame] | 138 | libsuffix=-gnu |
Andrew Pinski | ff65de7 | 2004-05-25 22:39:02 +0000 | [diff] [blame] | 139 | ;; |
| 140 | esac |
Andrew Pinski | 7d34a5a | 2004-05-26 01:21:46 +0000 | [diff] [blame] | 141 | AC_SUBST(includedirname) |
H.J. Lu | 4620d81 | 2007-06-02 16:15:04 +0000 | [diff] [blame] | 142 | AC_SUBST(libsuffix) |
Andrew Pinski | ff65de7 | 2004-05-25 22:39:02 +0000 | [diff] [blame] | 143 | |
Andrew Pinski | 049bc40 | 2004-10-01 03:46:39 +0000 | [diff] [blame] | 144 | AC_CONFIG_HEADERS(config.h) |
| 145 | |
Nathanael Nerode | 252dde6 | 2004-04-09 12:40:59 +0000 | [diff] [blame] | 146 | # -------- |
| 147 | # Programs |
| 148 | # -------- |
| 149 | |
| 150 | GCC_NO_EXECUTABLES |
Nathanael Nerode | db7f3c6 | 2004-04-15 17:05:36 +0000 | [diff] [blame] | 151 | |
| 152 | # We must force CC to /not/ be a precious variable; otherwise |
| 153 | # the wrong, non-multilib-adjusted value will be used in multilibs. |
| 154 | # As a side effect, we have to subst CFLAGS ourselves. |
| 155 | m4_rename([_AC_ARG_VAR_PRECIOUS],[real_PRECIOUS]) |
| 156 | m4_define([_AC_ARG_VAR_PRECIOUS],[]) |
Nathanael Nerode | 252dde6 | 2004-04-09 12:40:59 +0000 | [diff] [blame] | 157 | AC_PROG_CC |
Ralf Wildenhues | 1b3b24c | 2009-07-30 19:41:13 +0000 | [diff] [blame] | 158 | m4_rename_force([real_PRECIOUS],[_AC_ARG_VAR_PRECIOUS]) |
Nathanael Nerode | db7f3c6 | 2004-04-15 17:05:36 +0000 | [diff] [blame] | 159 | |
Andrew Pinski | a5a813f | 2005-08-13 23:44:14 +0000 | [diff] [blame] | 160 | # extra LD Flags which are required for targets |
Dave Korn | 7de6ba7 | 2010-12-06 00:50:04 +0000 | [diff] [blame] | 161 | ACX_LT_HOST_FLAGS |
Andrew Pinski | a5a813f | 2005-08-13 23:44:14 +0000 | [diff] [blame] | 162 | case "${host}" in |
| 163 | *-darwin*) |
| 164 | # Darwin needs -single_module when linking libobjc |
Dave Korn | 7de6ba7 | 2010-12-06 00:50:04 +0000 | [diff] [blame] | 165 | extra_ldflags_libobjc='$(lt_host_flags) -Wl,-single_module' |
Andrew Pinski | a5a813f | 2005-08-13 23:44:14 +0000 | [diff] [blame] | 166 | ;; |
Dave Korn | 1922295 | 2010-03-23 05:05:35 +0000 | [diff] [blame] | 167 | *-cygwin*|*-mingw*) |
| 168 | # Tell libtool to build DLLs on Windows |
Dave Korn | 7de6ba7 | 2010-12-06 00:50:04 +0000 | [diff] [blame] | 169 | extra_ldflags_libobjc='$(lt_host_flags)' |
Dave Korn | 1922295 | 2010-03-23 05:05:35 +0000 | [diff] [blame] | 170 | ;; |
Andrew Pinski | a5a813f | 2005-08-13 23:44:14 +0000 | [diff] [blame] | 171 | esac |
| 172 | AC_SUBST(extra_ldflags_libobjc) |
| 173 | |
Nathanael Nerode | db7f3c6 | 2004-04-15 17:05:36 +0000 | [diff] [blame] | 174 | AC_SUBST(CFLAGS) |
Nathanael Nerode | 252dde6 | 2004-04-09 12:40:59 +0000 | [diff] [blame] | 175 | |
| 176 | AC_CHECK_TOOL(AS, as) |
| 177 | AC_CHECK_TOOL(AR, ar) |
| 178 | AC_CHECK_TOOL(RANLIB, ranlib, :) |
| 179 | AC_PROG_INSTALL |
Geoffrey Keating | 7c6b0e9 | 2001-02-09 07:14:35 +0000 | [diff] [blame] | 180 | |
Mike Stump | dd36515 | 2004-10-20 01:26:37 +0000 | [diff] [blame] | 181 | AM_MAINTAINER_MODE |
| 182 | |
Nathanael Nerode | 9c01f39 | 2004-04-09 11:43:02 +0000 | [diff] [blame] | 183 | # Enable Win32 DLL on MS Windows - FIXME |
| 184 | AC_LIBTOOL_WIN32_DLL |
Geoffrey Keating | 7c6b0e9 | 2001-02-09 07:14:35 +0000 | [diff] [blame] | 185 | |
Franz Sirl | b150efe | 2002-02-11 18:10:05 +0000 | [diff] [blame] | 186 | AC_PROG_LIBTOOL |
Ben Elliston | bce1b48 | 1998-09-30 02:13:15 +0000 | [diff] [blame] | 187 | |
Mike Stump | dd36515 | 2004-10-20 01:26:37 +0000 | [diff] [blame] | 188 | AM_PROG_CC_C_O |
| 189 | |
Franz Sirl | b150efe | 2002-02-11 18:10:05 +0000 | [diff] [blame] | 190 | AC_PROG_MAKE_SET |
Ben Elliston | bce1b48 | 1998-09-30 02:13:15 +0000 | [diff] [blame] | 191 | |
Nathanael Nerode | 252dde6 | 2004-04-09 12:40:59 +0000 | [diff] [blame] | 192 | # ------- |
| 193 | # Headers |
| 194 | # ------- |
| 195 | |
Ben Elliston | bce1b48 | 1998-09-30 02:13:15 +0000 | [diff] [blame] | 196 | # Sanity check for the cross-compilation case: |
| 197 | AC_CHECK_HEADER(stdio.h,:, |
| 198 | [AC_MSG_ERROR([Can't find stdio.h. |
| 199 | You must have a usable C system for the target already installed, at least |
| 200 | including headers and, preferably, the library, before you can configure |
| 201 | the Objective C runtime system. If necessary, install gcc now with |
| 202 | \`LANGUAGES=c', then the target library, then build with \`LANGUAGES=objc'.])]) |
| 203 | |
| 204 | AC_HEADER_STDC |
| 205 | |
Ovidiu Predescu | d972a4c | 2000-08-15 07:38:04 +0000 | [diff] [blame] | 206 | AC_CHECK_HEADERS(sched.h) |
| 207 | |
Nathanael Nerode | 252dde6 | 2004-04-09 12:40:59 +0000 | [diff] [blame] | 208 | # ----------- |
| 209 | # Miscellanea |
| 210 | # ----------- |
| 211 | |
Nicola Pero | fd31253 | 2010-09-14 10:23:37 +0000 | [diff] [blame] | 212 | # Check if we have thread-local storage |
| 213 | GCC_CHECK_TLS |
Ben Elliston | bce1b48 | 1998-09-30 02:13:15 +0000 | [diff] [blame] | 214 | |
Andrew Pinski | 049bc40 | 2004-10-01 03:46:39 +0000 | [diff] [blame] | 215 | AC_MSG_CHECKING([for exception model to use]) |
| 216 | AC_LANG_PUSH(C) |
| 217 | AC_ARG_ENABLE(sjlj-exceptions, |
| 218 | AS_HELP_STRING([--enable-sjlj-exceptions], |
| 219 | [force use of builtin_setjmp for exceptions]), |
| 220 | [:], |
| 221 | [dnl Botheration. Now we've got to detect the exception model. |
| 222 | dnl Link tests against libgcc.a are problematic since -- at least |
| 223 | dnl as of this writing -- we've not been given proper -L bits for |
| 224 | dnl single-tree newlib and libgloss. |
| 225 | dnl |
| 226 | dnl This is what AC_TRY_COMPILE would do if it didn't delete the |
| 227 | dnl conftest files before we got a change to grep them first. |
| 228 | cat > conftest.$ac_ext << EOF |
| 229 | [#]line __oline__ "configure" |
| 230 | @interface Frob |
| 231 | @end |
| 232 | @implementation Frob |
| 233 | @end |
| 234 | int proc(); |
| 235 | int foo() |
| 236 | { |
| 237 | @try { |
| 238 | return proc(); |
| 239 | } |
| 240 | @catch (Frob* ex) { |
| 241 | return 0; |
| 242 | } |
| 243 | } |
| 244 | EOF |
| 245 | old_CFLAGS="$CFLAGS" |
| 246 | dnl work around that we don't have Objective-C support in autoconf |
| 247 | CFLAGS="-x objective-c -fgnu-runtime -fobjc-exceptions -S" |
| 248 | if AC_TRY_EVAL(ac_compile); then |
| 249 | if grep _Unwind_SjLj_Resume conftest.s >/dev/null 2>&1 ; then |
| 250 | enable_sjlj_exceptions=yes |
| 251 | elif grep _Unwind_Resume conftest.s >/dev/null 2>&1 ; then |
| 252 | enable_sjlj_exceptions=no |
| 253 | fi |
| 254 | fi |
| 255 | CFLAGS="$old_CFLAGS" |
| 256 | rm -f conftest*]) |
| 257 | if test x$enable_sjlj_exceptions = xyes; then |
| 258 | AC_DEFINE(SJLJ_EXCEPTIONS, 1, |
| 259 | [Define if the compiler is configured for setjmp/longjmp exceptions.]) |
| 260 | ac_exception_model_name=sjlj |
| 261 | elif test x$enable_sjlj_exceptions = xno; then |
| 262 | ac_exception_model_name="call frame" |
| 263 | else |
| 264 | AC_MSG_ERROR([unable to detect exception model]) |
| 265 | fi |
| 266 | AC_LANG_POP(C) |
| 267 | AC_MSG_RESULT($ac_exception_model_name) |
| 268 | |
Trevor Saunders | 539280a | 2015-05-02 04:11:07 +0000 | [diff] [blame^] | 269 | gt_BITFIELD_TYPE_MATTERS |
| 270 | |
Nathanael Nerode | 252dde6 | 2004-04-09 12:40:59 +0000 | [diff] [blame] | 271 | # ------ |
| 272 | # Output |
| 273 | # ------ |
Ben Elliston | bce1b48 | 1998-09-30 02:13:15 +0000 | [diff] [blame] | 274 | |
H.J. Lu | 2c88848 | 2007-10-14 18:17:14 +0000 | [diff] [blame] | 275 | if test ${multilib} = yes; then |
| 276 | multilib_arg="--enable-multilib" |
| 277 | else |
| 278 | multilib_arg= |
| 279 | fi |
| 280 | |
Nathanael Nerode | 252dde6 | 2004-04-09 12:40:59 +0000 | [diff] [blame] | 281 | AC_CONFIG_FILES([Makefile]) |
Nathanael Nerode | 252dde6 | 2004-04-09 12:40:59 +0000 | [diff] [blame] | 282 | AC_OUTPUT |