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