]> git.ipfire.org Git - thirdparty/gcc.git/blame - libobjc/configure.ac
Add source_location support to PHI arguments.
[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
748086b7 3# 2005, 2006, 2009 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 9#it under the terms of the GNU General Public License as published by
748086b7 10#the Free Software Foundation; either version 3, or (at your option)
bce1b489
BE
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
748086b7
JJ
19#along with GCC; see the file COPYING3. If not see
20#<http://www.gnu.org/licenses/>.
bce1b489 21
88386050 22AC_PREREQ(2.59)
684c64bf 23AC_INIT(package-unused, version-unused,, libobjc)
252dde64 24AC_CONFIG_SRCDIR([objc/objc.h])
215c351a 25GCC_TOPLEV_SUBDIRS
bce1b489 26
252dde64 27# We need the following definitions because AC_PROG_LIBTOOL relies on them
1fcfac98 28PACKAGE=libobjc
252dde64 29# Version is pulled out to make it a bit easier to change using sed.
84700346 30VERSION=2:0:0
1fcfac98
NN
31AC_SUBST(VERSION)
32
6706f116
AO
33# 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
252dde64
NN
39# -------
40# Options
41# -------
42
252dde64
NN
43# 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
8c3e5222
DA
65 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 ;;
252dde64 73esac],
8c3e5222 74[OBJC_BOEHM_GC=''; OBJC_BOEHM_GC_INCLUDES=''])
252dde64 75AC_SUBST(OBJC_BOEHM_GC)
8c3e5222 76AC_SUBST(OBJC_BOEHM_GC_INCLUDES)
252dde64
NN
77
78# -----------
79# Directories
80# -----------
9c01f395 81
5b043f08
GK
82# Find the rest of the source tree framework.
83AM_ENABLE_MULTILIB(, ..)
aebb8c22 84
b150efee 85AC_CANONICAL_SYSTEM
1506eac1 86ACX_NONCANONICAL_TARGET
9c01f395 87
af0c82b3 88# Export source directory.
9c01f395
NN
89# 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.
9c01f395 92case $srcdir in
252dde64
NN
93 [\\/$]* | ?:[\\/]*) glibcpp_srcdir=${srcdir} ;;
94 *) glibcpp_srcdir=`cd "$srcdir" && ${PWDCMD-pwd} || echo "$srcdir"` ;;
9c01f395 95esac
9c01f395
NN
96AC_SUBST(glibcpp_srcdir)
97
608e1e0c 98# Calculate toolexeclibdir
a42a57cb 99# Also toolexecdir, though it's only used in toolexeclibdir
9c01f395
NN
100case ${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.
a42a57cb 105 toolexecdir='$(libdir)/gcc/$(target_noncanonical)'
2b37e3d5 106 toolexeclibdir='$(toolexecdir)/$(gcc_version)$(MULTISUBDIR)'
9c01f395
NN
107 ;;
108 no)
109 if test -n "$with_cross_host" &&
110 test x"$with_cross_host" != x"no"; then
9c01f395 111 # Install a library built with a cross compiler in tooldir, not libdir.
a42a57cb 112 toolexecdir='$(exec_prefix)/$(target_noncanonical)'
608e1e0c
NN
113 toolexeclibdir='$(toolexecdir)/lib'
114 else
a42a57cb 115 toolexecdir='$(libdir)/gcc-lib/$(target_noncanonical)'
608e1e0c 116 toolexeclibdir='$(libdir)'
9c01f395
NN
117 fi
118 multi_os_directory=`$CC -print-multi-os-directory`
119 case $multi_os_directory in
120 .) ;; # Avoid trailing /.
608e1e0c 121 *) toolexeclibdir=$toolexeclibdir/$multi_os_directory ;;
9c01f395
NN
122 esac
123 ;;
124esac
a42a57cb 125AC_SUBST(toolexecdir)
608e1e0c 126AC_SUBST(toolexeclibdir)
9c01f395 127
ff65de76
AP
128# Figure out if we want to name the include directory and the
129# library name changes differently.
7d34a5a9 130includedirname=include
45d5f86c 131libsuffix=
ff65de76
AP
132case "${host}" in
133 *-darwin*)
134 # Darwin is the only target so far that needs a different include directory.
7d34a5a9 135 includedirname=include-gnu-runtime
af333b9a 136 libsuffix=-gnu
ff65de76
AP
137 ;;
138esac
7d34a5a9 139AC_SUBST(includedirname)
4620d81e 140AC_SUBST(libsuffix)
ff65de76 141
049bc404
AP
142AC_CONFIG_HEADERS(config.h)
143
252dde64
NN
144# --------
145# Programs
146# --------
147
148GCC_NO_EXECUTABLES
db7f3c69
NN
149
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],[])
252dde64 155AC_PROG_CC
db7f3c69
NN
156m4_rename([real_PRECIOUS],[_AC_ARG_VAR_PRECIOUS])
157
a5a813f8
AP
158# extra LD Flags which are required for targets
159case "${host}" in
160 *-darwin*)
161 # Darwin needs -single_module when linking libobjc
162 extra_ldflags_libobjc=-Wl,-single_module
163 ;;
164esac
165AC_SUBST(extra_ldflags_libobjc)
166
db7f3c69 167AC_SUBST(CFLAGS)
252dde64
NN
168
169AC_CHECK_TOOL(AS, as)
170AC_CHECK_TOOL(AR, ar)
171AC_CHECK_TOOL(RANLIB, ranlib, :)
172AC_PROG_INSTALL
7c6b0e92 173
dd365157
MS
174AM_MAINTAINER_MODE
175
9c01f395
NN
176# Enable Win32 DLL on MS Windows - FIXME
177AC_LIBTOOL_WIN32_DLL
7c6b0e92 178
b150efee 179AC_PROG_LIBTOOL
bce1b489 180
dd365157
MS
181AM_PROG_CC_C_O
182
b150efee 183AC_PROG_MAKE_SET
bce1b489 184
252dde64
NN
185# -------
186# Headers
187# -------
188
bce1b489
BE
189# Sanity check for the cross-compilation case:
190AC_CHECK_HEADER(stdio.h,:,
191 [AC_MSG_ERROR([Can't find stdio.h.
192You must have a usable C system for the target already installed, at least
193including headers and, preferably, the library, before you can configure
194the Objective C runtime system. If necessary, install gcc now with
195\`LANGUAGES=c', then the target library, then build with \`LANGUAGES=objc'.])])
196
197AC_HEADER_STDC
198
d972a4c2
OP
199AC_CHECK_HEADERS(sched.h)
200
252dde64
NN
201# -----------
202# Miscellanea
203# -----------
204
6886e18e
AP
205AC_MSG_CHECKING([for thread model used by GCC])
206target_thread_file=`$CC -v 2>&1 | sed -n 's/^Thread model: //p'`
207AC_MSG_RESULT([$target_thread_file])
208
209if test $target_thread_file != single; then
210 AC_DEFINE(HAVE_GTHR_DEFAULT, 1,
211 [Define if the compiler has a thread header that is non single.])
212fi
213
bce1b489 214
049bc404
AP
215AC_MSG_CHECKING([for exception model to use])
216AC_LANG_PUSH(C)
217AC_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.
222dnl Link tests against libgcc.a are problematic since -- at least
223dnl as of this writing -- we've not been given proper -L bits for
224dnl single-tree newlib and libgloss.
225dnl
226dnl This is what AC_TRY_COMPILE would do if it didn't delete the
227dnl conftest files before we got a change to grep them first.
228cat > conftest.$ac_ext << EOF
229[#]line __oline__ "configure"
230@interface Frob
231@end
232@implementation Frob
233@end
234int proc();
235int foo()
236{
237 @try {
238 return proc();
239 }
240 @catch (Frob* ex) {
241 return 0;
242 }
243}
244EOF
245old_CFLAGS="$CFLAGS"
246dnl work around that we don't have Objective-C support in autoconf
247CFLAGS="-x objective-c -fgnu-runtime -fobjc-exceptions -S"
248if 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
254fi
255CFLAGS="$old_CFLAGS"
256rm -f conftest*])
257if 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
261elif test x$enable_sjlj_exceptions = xno; then
262 ac_exception_model_name="call frame"
263else
264 AC_MSG_ERROR([unable to detect exception model])
265fi
266AC_LANG_POP(C)
267AC_MSG_RESULT($ac_exception_model_name)
268
252dde64
NN
269# ------
270# Output
271# ------
bce1b489 272
2c888488
L
273if test ${multilib} = yes; then
274 multilib_arg="--enable-multilib"
275else
276 multilib_arg=
277fi
252dde64 278
2c888488 279AC_CONFIG_FILES([Makefile])
252dde64 280AC_OUTPUT