]> git.ipfire.org Git - thirdparty/gcc.git/blame - libobjc/configure.ac
Daily bump.
[thirdparty/gcc.git] / libobjc / configure.ac
CommitLineData
bce1b489 1# Process this file with autoconf to produce a configure script.
9c01f395 2# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2001, 2002, 2003, 2004
8c3e5222 3# 2005, 2006 Free Software Foundation, Inc.
9c01f395 4# Originally contributed by Dave Love (d.love@dl.ac.uk).
bce1b489 5#
9c01f395 6#This file is part of GCC.
bce1b489 7#
9c01f395 8#GCC is free software; you can redistribute it and/or modify
bce1b489
BE
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#
9c01f395 13#GCC is distributed in the hope that it will be useful,
bce1b489
BE
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
9c01f395 19#along with GCC; see the file COPYING. If not, write to
f9d09c43
KC
20#the Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
21#02110-1301, USA.
bce1b489 22
88386050 23AC_PREREQ(2.59)
684c64bf 24AC_INIT(package-unused, version-unused,, libobjc)
252dde64 25AC_CONFIG_SRCDIR([objc/objc.h])
215c351a 26GCC_TOPLEV_SUBDIRS
bce1b489 27
252dde64 28# We need the following definitions because AC_PROG_LIBTOOL relies on them
1fcfac98 29PACKAGE=libobjc
252dde64 30# Version is pulled out to make it a bit easier to change using sed.
84700346 31VERSION=2:0:0
1fcfac98
NN
32AC_SUBST(VERSION)
33
6706f116
AO
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.
38ORIGINAL_LD_FOR_MULTILIBS=$LD
39
252dde64
NN
40# -------
41# Options
42# -------
43
252dde64
NN
44# We use these options to decide which functions to include.
45AC_ARG_WITH(target-subdir,
46[ --with-target-subdir=SUBDIR
47 configuring in a subdirectory])
48AC_ARG_WITH(cross-host,
49[ --with-cross-host=HOST configuring with a cross compiler])
50
51AC_MSG_CHECKING([for --enable-version-specific-runtime-libs])
52AC_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])
60AC_MSG_RESULT($version_specific_libs)
61
62AC_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
8c3e5222
DA
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 ;;
252dde64 74esac],
8c3e5222 75[OBJC_BOEHM_GC=''; OBJC_BOEHM_GC_INCLUDES=''])
252dde64 76AC_SUBST(OBJC_BOEHM_GC)
8c3e5222 77AC_SUBST(OBJC_BOEHM_GC_INCLUDES)
252dde64
NN
78
79# -----------
80# Directories
81# -----------
9c01f395 82
5b043f08
GK
83# Find the rest of the source tree framework.
84AM_ENABLE_MULTILIB(, ..)
aebb8c22 85
b150efee 86AC_CANONICAL_SYSTEM
1506eac1 87ACX_NONCANONICAL_TARGET
9c01f395 88
af0c82b3 89# Export source directory.
9c01f395
NN
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.
9c01f395 93case $srcdir in
252dde64
NN
94 [\\/$]* | ?:[\\/]*) glibcpp_srcdir=${srcdir} ;;
95 *) glibcpp_srcdir=`cd "$srcdir" && ${PWDCMD-pwd} || echo "$srcdir"` ;;
9c01f395 96esac
9c01f395
NN
97AC_SUBST(glibcpp_srcdir)
98
608e1e0c 99# Calculate toolexeclibdir
a42a57cb 100# Also toolexecdir, though it's only used in toolexeclibdir
9c01f395
NN
101case ${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.
a42a57cb 106 toolexecdir='$(libdir)/gcc/$(target_noncanonical)'
2b37e3d5 107 toolexeclibdir='$(toolexecdir)/$(gcc_version)$(MULTISUBDIR)'
9c01f395
NN
108 ;;
109 no)
110 if test -n "$with_cross_host" &&
111 test x"$with_cross_host" != x"no"; then
9c01f395 112 # Install a library built with a cross compiler in tooldir, not libdir.
a42a57cb 113 toolexecdir='$(exec_prefix)/$(target_noncanonical)'
608e1e0c
NN
114 toolexeclibdir='$(toolexecdir)/lib'
115 else
a42a57cb 116 toolexecdir='$(libdir)/gcc-lib/$(target_noncanonical)'
608e1e0c 117 toolexeclibdir='$(libdir)'
9c01f395
NN
118 fi
119 multi_os_directory=`$CC -print-multi-os-directory`
120 case $multi_os_directory in
121 .) ;; # Avoid trailing /.
608e1e0c 122 *) toolexeclibdir=$toolexeclibdir/$multi_os_directory ;;
9c01f395
NN
123 esac
124 ;;
125esac
a42a57cb 126AC_SUBST(toolexecdir)
608e1e0c 127AC_SUBST(toolexeclibdir)
9c01f395 128
ff65de76
AP
129# Figure out if we want to name the include directory and the
130# library name changes differently.
7d34a5a9 131includedirname=include
ff65de76
AP
132libext=
133case "${host}" in
134 *-darwin*)
135 # Darwin is the only target so far that needs a different include directory.
7d34a5a9 136 includedirname=include-gnu-runtime
ff65de76
AP
137 libext=-gnu
138 ;;
139esac
7d34a5a9 140AC_SUBST(includedirname)
ff65de76
AP
141AC_SUBST(libext)
142
049bc404
AP
143AC_CONFIG_HEADERS(config.h)
144
252dde64
NN
145# --------
146# Programs
147# --------
148
149GCC_NO_EXECUTABLES
db7f3c69
NN
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.
154m4_rename([_AC_ARG_VAR_PRECIOUS],[real_PRECIOUS])
155m4_define([_AC_ARG_VAR_PRECIOUS],[])
252dde64 156AC_PROG_CC
db7f3c69
NN
157m4_rename([real_PRECIOUS],[_AC_ARG_VAR_PRECIOUS])
158
a5a813f8
AP
159# extra LD Flags which are required for targets
160case "${host}" in
161 *-darwin*)
162 # Darwin needs -single_module when linking libobjc
163 extra_ldflags_libobjc=-Wl,-single_module
164 ;;
165esac
166AC_SUBST(extra_ldflags_libobjc)
167
db7f3c69 168AC_SUBST(CFLAGS)
252dde64
NN
169
170AC_CHECK_TOOL(AS, as)
171AC_CHECK_TOOL(AR, ar)
172AC_CHECK_TOOL(RANLIB, ranlib, :)
173AC_PROG_INSTALL
7c6b0e92 174
dd365157
MS
175AM_MAINTAINER_MODE
176
9c01f395
NN
177# Enable Win32 DLL on MS Windows - FIXME
178AC_LIBTOOL_WIN32_DLL
7c6b0e92 179
b150efee 180AC_PROG_LIBTOOL
bce1b489 181
dd365157
MS
182AM_PROG_CC_C_O
183
b150efee 184AC_PROG_MAKE_SET
bce1b489 185
252dde64
NN
186# -------
187# Headers
188# -------
189
bce1b489
BE
190# Sanity check for the cross-compilation case:
191AC_CHECK_HEADER(stdio.h,:,
192 [AC_MSG_ERROR([Can't find stdio.h.
193You must have a usable C system for the target already installed, at least
194including headers and, preferably, the library, before you can configure
195the Objective C runtime system. If necessary, install gcc now with
196\`LANGUAGES=c', then the target library, then build with \`LANGUAGES=objc'.])])
197
198AC_HEADER_STDC
199
d972a4c2
OP
200AC_CHECK_HEADERS(sched.h)
201
252dde64
NN
202# -----------
203# Miscellanea
204# -----------
205
6886e18e
AP
206AC_MSG_CHECKING([for thread model used by GCC])
207target_thread_file=`$CC -v 2>&1 | sed -n 's/^Thread model: //p'`
208AC_MSG_RESULT([$target_thread_file])
209
210if 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.])
213fi
214
bce1b489 215
049bc404
AP
216AC_MSG_CHECKING([for exception model to use])
217AC_LANG_PUSH(C)
218AC_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.
223dnl Link tests against libgcc.a are problematic since -- at least
224dnl as of this writing -- we've not been given proper -L bits for
225dnl single-tree newlib and libgloss.
226dnl
227dnl This is what AC_TRY_COMPILE would do if it didn't delete the
228dnl conftest files before we got a change to grep them first.
229cat > conftest.$ac_ext << EOF
230[#]line __oline__ "configure"
231@interface Frob
232@end
233@implementation Frob
234@end
235int proc();
236int foo()
237{
238 @try {
239 return proc();
240 }
241 @catch (Frob* ex) {
242 return 0;
243 }
244}
245EOF
246old_CFLAGS="$CFLAGS"
247dnl work around that we don't have Objective-C support in autoconf
248CFLAGS="-x objective-c -fgnu-runtime -fobjc-exceptions -S"
249if 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
255fi
256CFLAGS="$old_CFLAGS"
257rm -f conftest*])
258if 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
262elif test x$enable_sjlj_exceptions = xno; then
263 ac_exception_model_name="call frame"
264else
265 AC_MSG_ERROR([unable to detect exception model])
266fi
267AC_LANG_POP(C)
268AC_MSG_RESULT($ac_exception_model_name)
269
252dde64
NN
270# ------
271# Output
272# ------
bce1b489 273
252dde64
NN
274AC_CONFIG_FILES([Makefile])
275
276AC_CONFIG_COMMANDS([default],
608e1e0c 277[[if test -n "$CONFIG_FILES"; then
bce1b489
BE
278 if test -n "${with_target_subdir}"; then
279 # FIXME: We shouldn't need to set ac_file
280 ac_file=Makefile
6706f116 281 LD="${ORIGINAL_LD_FOR_MULTILIBS}"
5b043f08 282 . ${multi_basedir}/config-ml.in
bce1b489 283 fi
252dde64
NN
284fi]],
285[[srcdir=${srcdir}
bce1b489
BE
286host=${host}
287target=${target}
288with_target_subdir=${with_target_subdir}
289with_multisubdir=${with_multisubdir}
290ac_configure_args="--enable-multilib ${ac_configure_args}"
5b043f08 291multi_basedir=${multi_basedir}
bce1b489 292CONFIG_SHELL=${CONFIG_SHELL-/bin/sh}
3343fdd2 293ORIGINAL_LD_FOR_MULTILIBS="${ORIGINAL_LD_FOR_MULTILIBS}"
252dde64
NN
294]])
295
296AC_OUTPUT