blob: 494a289ec60864294bfc353fdef616a232e98bba [file] [log] [blame]
Ben Ellistonbce1b481998-09-30 02:13:15 +00001# Process this file with autoconf to produce a configure script.
Nathanael Nerode9c01f392004-04-09 11:43:02 +00002# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2001, 2002, 2003, 2004
Jakub Jelinek748086b2009-04-09 17:00:19 +02003# 2005, 2006, 2009 Free Software Foundation, Inc.
Nathanael Nerode9c01f392004-04-09 11:43:02 +00004# Originally contributed by Dave Love (d.love@dl.ac.uk).
Ben Ellistonbce1b481998-09-30 02:13:15 +00005#
Nathanael Nerode9c01f392004-04-09 11:43:02 +00006#This file is part of GCC.
Ben Ellistonbce1b481998-09-30 02:13:15 +00007#
Nathanael Nerode9c01f392004-04-09 11:43:02 +00008#GCC is free software; you can redistribute it and/or modify
Ben Ellistonbce1b481998-09-30 02:13:15 +00009#it under the terms of the GNU General Public License as published by
Jakub Jelinek748086b2009-04-09 17:00:19 +020010#the Free Software Foundation; either version 3, or (at your option)
Ben Ellistonbce1b481998-09-30 02:13:15 +000011#any later version.
12#
Nathanael Nerode9c01f392004-04-09 11:43:02 +000013#GCC is distributed in the hope that it will be useful,
Ben Ellistonbce1b481998-09-30 02:13:15 +000014#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
Jakub Jelinek748086b2009-04-09 17:00:19 +020019#along with GCC; see the file COPYING3. If not see
20#<http://www.gnu.org/licenses/>.
Ben Ellistonbce1b481998-09-30 02:13:15 +000021
Ralf Wildenhuesdf58e642009-08-24 19:08:51 +000022AC_PREREQ(2.64)
Andrew Pinski684c64b2004-06-11 20:11:12 +000023AC_INIT(package-unused, version-unused,, libobjc)
Nathanael Nerode252dde62004-04-09 12:40:59 +000024AC_CONFIG_SRCDIR([objc/objc.h])
Paolo Bonzini215c3512005-02-28 13:26:36 +000025GCC_TOPLEV_SUBDIRS
Ben Ellistonbce1b481998-09-30 02:13:15 +000026
Nathanael Nerode252dde62004-04-09 12:40:59 +000027# We need the following definitions because AC_PROG_LIBTOOL relies on them
Nathanael Nerode1fcfac92004-04-09 11:50:51 +000028PACKAGE=libobjc
Nathanael Nerode252dde62004-04-09 12:40:59 +000029# Version is pulled out to make it a bit easier to change using sed.
Matthias Klose196891b2010-12-03 14:22:13 +000030VERSION=3:0:0
Nathanael Nerode1fcfac92004-04-09 11:50:51 +000031AC_SUBST(VERSION)
32
Alexandre Oliva6706f112002-05-08 04:38:00 +000033# This works around the fact that libtool configuration may change LD
34# for this particular configuration, but some shells, instead of
35# keeping the changes in LD private, export them just because LD is
36# exported.
37ORIGINAL_LD_FOR_MULTILIBS=$LD
38
Nathanael Nerode252dde62004-04-09 12:40:59 +000039# -------
40# Options
41# -------
42
Nathanael Nerode252dde62004-04-09 12:40:59 +000043# We use these options to decide which functions to include.
44AC_ARG_WITH(target-subdir,
45[ --with-target-subdir=SUBDIR
46 configuring in a subdirectory])
47AC_ARG_WITH(cross-host,
48[ --with-cross-host=HOST configuring with a cross compiler])
49
50AC_MSG_CHECKING([for --enable-version-specific-runtime-libs])
51AC_ARG_ENABLE(version-specific-runtime-libs,
52[ --enable-version-specific-runtime-libs Specify that runtime libraries should be installed in a compiler-specific directory ],
53[case "$enableval" in
54 yes) version_specific_libs=yes ;;
55 no) version_specific_libs=no ;;
56 *) AC_MSG_ERROR([Unknown argument to enable/disable version-specific libs]);;
57 esac],
58[version_specific_libs=no])
59AC_MSG_RESULT($version_specific_libs)
60
61AC_ARG_ENABLE(objc-gc,
62[ --enable-objc-gc enable the use of Boehm's garbage collector with
63 the GNU Objective-C runtime.],
64[case $enable_objc_gc in
David Ayers8c3e5222006-01-24 22:57:22 +010065 no)
66 OBJC_BOEHM_GC=''
67 OBJC_BOEHM_GC_INCLUDES=''
68 ;;
69 *)
70 OBJC_BOEHM_GC=libobjc_gc.la
71 OBJC_BOEHM_GC_INCLUDES='-I$(top_srcdir)/../boehm-gc/include -I../boehm-gc/include'
72 ;;
Nathanael Nerode252dde62004-04-09 12:40:59 +000073esac],
David Ayers8c3e5222006-01-24 22:57:22 +010074[OBJC_BOEHM_GC=''; OBJC_BOEHM_GC_INCLUDES=''])
Nathanael Nerode252dde62004-04-09 12:40:59 +000075AC_SUBST(OBJC_BOEHM_GC)
David Ayers8c3e5222006-01-24 22:57:22 +010076AC_SUBST(OBJC_BOEHM_GC_INCLUDES)
Nathanael Nerode252dde62004-04-09 12:40:59 +000077
78# -----------
79# Directories
80# -----------
Nathanael Nerode9c01f392004-04-09 11:43:02 +000081
Geoffrey Keating5b043f02006-10-15 07:42:57 +000082# Find the rest of the source tree framework.
83AM_ENABLE_MULTILIB(, ..)
DJ Delorieaebb8c22002-06-25 23:53:45 -040084
Franz Sirlb150efe2002-02-11 18:10:05 +000085AC_CANONICAL_SYSTEM
Nathanael Nerode1506eac2004-08-28 11:18:12 +000086ACX_NONCANONICAL_TARGET
Franz Sirlb150efe2002-02-11 18:10:05 +000087
Nathanael Nerodeaf0c82b2004-04-09 12:49:16 +000088# Export source directory.
Nathanael Nerode9c01f392004-04-09 11:43:02 +000089# These need to be absolute paths, yet at the same time need to
90# canonicalize only relative paths, because then amd will not unmount
91# drives. Thus the use of PWDCMD: set it to 'pawd' or 'amq -w' if using amd.
Nathanael Nerode9c01f392004-04-09 11:43:02 +000092case $srcdir in
Nathanael Nerode252dde62004-04-09 12:40:59 +000093 [\\/$]* | ?:[\\/]*) glibcpp_srcdir=${srcdir} ;;
94 *) glibcpp_srcdir=`cd "$srcdir" && ${PWDCMD-pwd} || echo "$srcdir"` ;;
Nathanael Nerode9c01f392004-04-09 11:43:02 +000095esac
Nathanael Nerode9c01f392004-04-09 11:43:02 +000096AC_SUBST(glibcpp_srcdir)
97
Nathanael Nerode608e1e02004-04-09 13:08:31 +000098# Calculate toolexeclibdir
Nathanael Nerodea42a57c2004-04-14 20:08:02 +000099# Also toolexecdir, though it's only used in toolexeclibdir
Nathanael Nerode9c01f392004-04-09 11:43:02 +0000100case ${version_specific_libs} in
101 yes)
102 # Need the gcc compiler version to know where to install libraries
103 # and header files if --enable-version-specific-runtime-libs option
104 # is selected.
Nathanael Nerodea42a57c2004-04-14 20:08:02 +0000105 toolexecdir='$(libdir)/gcc/$(target_noncanonical)'
Zack Weinberg2b37e3d2005-03-21 17:42:26 +0000106 toolexeclibdir='$(toolexecdir)/$(gcc_version)$(MULTISUBDIR)'
Nathanael Nerode9c01f392004-04-09 11:43:02 +0000107 ;;
108 no)
109 if test -n "$with_cross_host" &&
110 test x"$with_cross_host" != x"no"; then
Nathanael Nerode9c01f392004-04-09 11:43:02 +0000111 # Install a library built with a cross compiler in tooldir, not libdir.
Nathanael Nerodea42a57c2004-04-14 20:08:02 +0000112 toolexecdir='$(exec_prefix)/$(target_noncanonical)'
Nathanael Nerode608e1e02004-04-09 13:08:31 +0000113 toolexeclibdir='$(toolexecdir)/lib'
114 else
Nathanael Nerodea42a57c2004-04-14 20:08:02 +0000115 toolexecdir='$(libdir)/gcc-lib/$(target_noncanonical)'
Nathanael Nerode608e1e02004-04-09 13:08:31 +0000116 toolexeclibdir='$(libdir)'
Nathanael Nerode9c01f392004-04-09 11:43:02 +0000117 fi
118 multi_os_directory=`$CC -print-multi-os-directory`
119 case $multi_os_directory in
120 .) ;; # Avoid trailing /.
Nathanael Nerode608e1e02004-04-09 13:08:31 +0000121 *) toolexeclibdir=$toolexeclibdir/$multi_os_directory ;;
Nathanael Nerode9c01f392004-04-09 11:43:02 +0000122 esac
123 ;;
124esac
Nathanael Nerodea42a57c2004-04-14 20:08:02 +0000125AC_SUBST(toolexecdir)
Nathanael Nerode608e1e02004-04-09 13:08:31 +0000126AC_SUBST(toolexeclibdir)
Nathanael Nerode9c01f392004-04-09 11:43:02 +0000127
Andrew Pinskiff65de72004-05-25 22:39:02 +0000128# Figure out if we want to name the include directory and the
129# library name changes differently.
Andrew Pinski7d34a5a2004-05-26 01:21:46 +0000130includedirname=include
Andrew Pinski45d5f862007-06-02 01:35:59 +0000131libsuffix=
Andrew Pinskiff65de72004-05-25 22:39:02 +0000132case "${host}" in
133 *-darwin*)
134 # Darwin is the only target so far that needs a different include directory.
Andrew Pinski7d34a5a2004-05-26 01:21:46 +0000135 includedirname=include-gnu-runtime
Andrew Pinskiaf333b92007-06-03 20:38:37 +0000136 libsuffix=-gnu
Andrew Pinskiff65de72004-05-25 22:39:02 +0000137 ;;
138esac
Andrew Pinski7d34a5a2004-05-26 01:21:46 +0000139AC_SUBST(includedirname)
H.J. Lu4620d812007-06-02 16:15:04 +0000140AC_SUBST(libsuffix)
Andrew Pinskiff65de72004-05-25 22:39:02 +0000141
Andrew Pinski049bc402004-10-01 03:46:39 +0000142AC_CONFIG_HEADERS(config.h)
143
Nathanael Nerode252dde62004-04-09 12:40:59 +0000144# --------
145# Programs
146# --------
147
148GCC_NO_EXECUTABLES
Nathanael Nerodedb7f3c62004-04-15 17:05:36 +0000149
150# We must force CC to /not/ be a precious variable; otherwise
151# the wrong, non-multilib-adjusted value will be used in multilibs.
152# As a side effect, we have to subst CFLAGS ourselves.
153m4_rename([_AC_ARG_VAR_PRECIOUS],[real_PRECIOUS])
154m4_define([_AC_ARG_VAR_PRECIOUS],[])
Nathanael Nerode252dde62004-04-09 12:40:59 +0000155AC_PROG_CC
Ralf Wildenhues1b3b24c2009-07-30 19:41:13 +0000156m4_rename_force([real_PRECIOUS],[_AC_ARG_VAR_PRECIOUS])
Nathanael Nerodedb7f3c62004-04-15 17:05:36 +0000157
Andrew Pinskia5a813f2005-08-13 23:44:14 +0000158# extra LD Flags which are required for targets
Dave Korn7de6ba72010-12-06 00:50:04 +0000159ACX_LT_HOST_FLAGS
Andrew Pinskia5a813f2005-08-13 23:44:14 +0000160case "${host}" in
161 *-darwin*)
162 # Darwin needs -single_module when linking libobjc
Dave Korn7de6ba72010-12-06 00:50:04 +0000163 extra_ldflags_libobjc='$(lt_host_flags) -Wl,-single_module'
Andrew Pinskia5a813f2005-08-13 23:44:14 +0000164 ;;
Dave Korn19222952010-03-23 05:05:35 +0000165 *-cygwin*|*-mingw*)
166 # Tell libtool to build DLLs on Windows
Dave Korn7de6ba72010-12-06 00:50:04 +0000167 extra_ldflags_libobjc='$(lt_host_flags)'
Dave Korn19222952010-03-23 05:05:35 +0000168 ;;
Andrew Pinskia5a813f2005-08-13 23:44:14 +0000169esac
170AC_SUBST(extra_ldflags_libobjc)
171
Nathanael Nerodedb7f3c62004-04-15 17:05:36 +0000172AC_SUBST(CFLAGS)
Nathanael Nerode252dde62004-04-09 12:40:59 +0000173
174AC_CHECK_TOOL(AS, as)
175AC_CHECK_TOOL(AR, ar)
176AC_CHECK_TOOL(RANLIB, ranlib, :)
177AC_PROG_INSTALL
Geoffrey Keating7c6b0e92001-02-09 07:14:35 +0000178
Mike Stumpdd365152004-10-20 01:26:37 +0000179AM_MAINTAINER_MODE
180
Nathanael Nerode9c01f392004-04-09 11:43:02 +0000181# Enable Win32 DLL on MS Windows - FIXME
182AC_LIBTOOL_WIN32_DLL
Geoffrey Keating7c6b0e92001-02-09 07:14:35 +0000183
Franz Sirlb150efe2002-02-11 18:10:05 +0000184AC_PROG_LIBTOOL
Ben Ellistonbce1b481998-09-30 02:13:15 +0000185
Mike Stumpdd365152004-10-20 01:26:37 +0000186AM_PROG_CC_C_O
187
Franz Sirlb150efe2002-02-11 18:10:05 +0000188AC_PROG_MAKE_SET
Ben Ellistonbce1b481998-09-30 02:13:15 +0000189
Nathanael Nerode252dde62004-04-09 12:40:59 +0000190# -------
191# Headers
192# -------
193
Ben Ellistonbce1b481998-09-30 02:13:15 +0000194# Sanity check for the cross-compilation case:
195AC_CHECK_HEADER(stdio.h,:,
196 [AC_MSG_ERROR([Can't find stdio.h.
197You must have a usable C system for the target already installed, at least
198including headers and, preferably, the library, before you can configure
199the Objective C runtime system. If necessary, install gcc now with
200\`LANGUAGES=c', then the target library, then build with \`LANGUAGES=objc'.])])
201
202AC_HEADER_STDC
203
Ovidiu Predescud972a4c2000-08-15 07:38:04 +0000204AC_CHECK_HEADERS(sched.h)
205
Nathanael Nerode252dde62004-04-09 12:40:59 +0000206# -----------
207# Miscellanea
208# -----------
209
Andrew Pinski6886e182005-02-28 20:04:41 +0000210AC_MSG_CHECKING([for thread model used by GCC])
211target_thread_file=`$CC -v 2>&1 | sed -n 's/^Thread model: //p'`
212AC_MSG_RESULT([$target_thread_file])
213
214if test $target_thread_file != single; then
215 AC_DEFINE(HAVE_GTHR_DEFAULT, 1,
216 [Define if the compiler has a thread header that is non single.])
217fi
218
Nicola Perofd312532010-09-14 10:23:37 +0000219# Check if we have thread-local storage
220GCC_CHECK_TLS
Ben Ellistonbce1b481998-09-30 02:13:15 +0000221
Andrew Pinski049bc402004-10-01 03:46:39 +0000222AC_MSG_CHECKING([for exception model to use])
223AC_LANG_PUSH(C)
224AC_ARG_ENABLE(sjlj-exceptions,
225 AS_HELP_STRING([--enable-sjlj-exceptions],
226 [force use of builtin_setjmp for exceptions]),
227[:],
228[dnl Botheration. Now we've got to detect the exception model.
229dnl Link tests against libgcc.a are problematic since -- at least
230dnl as of this writing -- we've not been given proper -L bits for
231dnl single-tree newlib and libgloss.
232dnl
233dnl This is what AC_TRY_COMPILE would do if it didn't delete the
234dnl conftest files before we got a change to grep them first.
235cat > conftest.$ac_ext << EOF
236[#]line __oline__ "configure"
237@interface Frob
238@end
239@implementation Frob
240@end
241int proc();
242int foo()
243{
244 @try {
245 return proc();
246 }
247 @catch (Frob* ex) {
248 return 0;
249 }
250}
251EOF
252old_CFLAGS="$CFLAGS"
253dnl work around that we don't have Objective-C support in autoconf
254CFLAGS="-x objective-c -fgnu-runtime -fobjc-exceptions -S"
255if AC_TRY_EVAL(ac_compile); then
256 if grep _Unwind_SjLj_Resume conftest.s >/dev/null 2>&1 ; then
257 enable_sjlj_exceptions=yes
258 elif grep _Unwind_Resume conftest.s >/dev/null 2>&1 ; then
259 enable_sjlj_exceptions=no
260 fi
261fi
262CFLAGS="$old_CFLAGS"
263rm -f conftest*])
264if test x$enable_sjlj_exceptions = xyes; then
265 AC_DEFINE(SJLJ_EXCEPTIONS, 1,
266 [Define if the compiler is configured for setjmp/longjmp exceptions.])
267 ac_exception_model_name=sjlj
268elif test x$enable_sjlj_exceptions = xno; then
269 ac_exception_model_name="call frame"
270else
271 AC_MSG_ERROR([unable to detect exception model])
272fi
273AC_LANG_POP(C)
274AC_MSG_RESULT($ac_exception_model_name)
275
Nathanael Nerode252dde62004-04-09 12:40:59 +0000276# ------
277# Output
278# ------
Ben Ellistonbce1b481998-09-30 02:13:15 +0000279
H.J. Lu2c888482007-10-14 18:17:14 +0000280if test ${multilib} = yes; then
281 multilib_arg="--enable-multilib"
282else
283 multilib_arg=
284fi
285
Nathanael Nerode252dde62004-04-09 12:40:59 +0000286AC_CONFIG_FILES([Makefile])
Nathanael Nerode252dde62004-04-09 12:40:59 +0000287AC_OUTPUT