]> git.ipfire.org Git - thirdparty/gcc.git/blame - libobjc/configure.ac
tree-ssa-alias.c (indirect_refs_may_alias_p): Do not treat arrays with same type...
[thirdparty/gcc.git] / libobjc / configure.ac
CommitLineData
bce1b489 1# Process this file with autoconf to produce a configure script.
818ab71a 2# Copyright (C) 1994-2016 Free Software Foundation, Inc.
9c01f395 3# Originally contributed by Dave Love (d.love@dl.ac.uk).
bce1b489 4#
9c01f395 5#This file is part of GCC.
bce1b489 6#
9c01f395 7#GCC is free software; you can redistribute it and/or modify
bce1b489 8#it under the terms of the GNU General Public License as published by
748086b7 9#the Free Software Foundation; either version 3, or (at your option)
bce1b489
BE
10#any later version.
11#
9c01f395 12#GCC is distributed in the hope that it will be useful,
bce1b489
BE
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
748086b7
JJ
18#along with GCC; see the file COPYING3. If not see
19#<http://www.gnu.org/licenses/>.
bce1b489 20
114bf3f1
MK
21m4_include([../config/pkg.m4])
22
df58e648 23AC_PREREQ(2.64)
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.
c7907a55 31VERSION=4: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
252dde64
NN
62# -----------
63# Directories
64# -----------
9c01f395 65
5b043f08
GK
66# Find the rest of the source tree framework.
67AM_ENABLE_MULTILIB(, ..)
aebb8c22 68
b150efee 69AC_CANONICAL_SYSTEM
1506eac1 70ACX_NONCANONICAL_TARGET
9c01f395 71
af0c82b3 72# Export source directory.
9c01f395
NN
73# These need to be absolute paths, yet at the same time need to
74# canonicalize only relative paths, because then amd will not unmount
75# drives. Thus the use of PWDCMD: set it to 'pawd' or 'amq -w' if using amd.
9c01f395 76case $srcdir in
252dde64
NN
77 [\\/$]* | ?:[\\/]*) glibcpp_srcdir=${srcdir} ;;
78 *) glibcpp_srcdir=`cd "$srcdir" && ${PWDCMD-pwd} || echo "$srcdir"` ;;
9c01f395 79esac
9c01f395
NN
80AC_SUBST(glibcpp_srcdir)
81
608e1e0c 82# Calculate toolexeclibdir
a42a57cb 83# Also toolexecdir, though it's only used in toolexeclibdir
9c01f395
NN
84case ${version_specific_libs} in
85 yes)
86 # Need the gcc compiler version to know where to install libraries
87 # and header files if --enable-version-specific-runtime-libs option
88 # is selected.
a42a57cb 89 toolexecdir='$(libdir)/gcc/$(target_noncanonical)'
2b37e3d5 90 toolexeclibdir='$(toolexecdir)/$(gcc_version)$(MULTISUBDIR)'
9c01f395
NN
91 ;;
92 no)
93 if test -n "$with_cross_host" &&
94 test x"$with_cross_host" != x"no"; then
9c01f395 95 # Install a library built with a cross compiler in tooldir, not libdir.
a42a57cb 96 toolexecdir='$(exec_prefix)/$(target_noncanonical)'
608e1e0c
NN
97 toolexeclibdir='$(toolexecdir)/lib'
98 else
a42a57cb 99 toolexecdir='$(libdir)/gcc-lib/$(target_noncanonical)'
608e1e0c 100 toolexeclibdir='$(libdir)'
9c01f395
NN
101 fi
102 multi_os_directory=`$CC -print-multi-os-directory`
103 case $multi_os_directory in
104 .) ;; # Avoid trailing /.
608e1e0c 105 *) toolexeclibdir=$toolexeclibdir/$multi_os_directory ;;
9c01f395
NN
106 esac
107 ;;
108esac
a42a57cb 109AC_SUBST(toolexecdir)
608e1e0c 110AC_SUBST(toolexeclibdir)
9c01f395 111
ff65de76
AP
112# Figure out if we want to name the include directory and the
113# library name changes differently.
7d34a5a9 114includedirname=include
45d5f86c 115libsuffix=
ff65de76
AP
116case "${host}" in
117 *-darwin*)
118 # Darwin is the only target so far that needs a different include directory.
7d34a5a9 119 includedirname=include-gnu-runtime
af333b9a 120 libsuffix=-gnu
ff65de76
AP
121 ;;
122esac
7d34a5a9 123AC_SUBST(includedirname)
4620d81e 124AC_SUBST(libsuffix)
ff65de76 125
049bc404
AP
126AC_CONFIG_HEADERS(config.h)
127
252dde64
NN
128# --------
129# Programs
130# --------
131
132GCC_NO_EXECUTABLES
db7f3c69
NN
133
134# We must force CC to /not/ be a precious variable; otherwise
135# the wrong, non-multilib-adjusted value will be used in multilibs.
136# As a side effect, we have to subst CFLAGS ourselves.
137m4_rename([_AC_ARG_VAR_PRECIOUS],[real_PRECIOUS])
138m4_define([_AC_ARG_VAR_PRECIOUS],[])
252dde64 139AC_PROG_CC
1b3b24c2 140m4_rename_force([real_PRECIOUS],[_AC_ARG_VAR_PRECIOUS])
db7f3c69 141
a5a813f8 142# extra LD Flags which are required for targets
7de6ba7a 143ACX_LT_HOST_FLAGS
a5a813f8
AP
144case "${host}" in
145 *-darwin*)
146 # Darwin needs -single_module when linking libobjc
7de6ba7a 147 extra_ldflags_libobjc='$(lt_host_flags) -Wl,-single_module'
a5a813f8 148 ;;
19222959
DK
149 *-cygwin*|*-mingw*)
150 # Tell libtool to build DLLs on Windows
7de6ba7a 151 extra_ldflags_libobjc='$(lt_host_flags)'
19222959 152 ;;
a5a813f8
AP
153esac
154AC_SUBST(extra_ldflags_libobjc)
155
db7f3c69 156AC_SUBST(CFLAGS)
252dde64
NN
157
158AC_CHECK_TOOL(AS, as)
159AC_CHECK_TOOL(AR, ar)
160AC_CHECK_TOOL(RANLIB, ranlib, :)
161AC_PROG_INSTALL
7c6b0e92 162
dd365157
MS
163AM_MAINTAINER_MODE
164
9c01f395
NN
165# Enable Win32 DLL on MS Windows - FIXME
166AC_LIBTOOL_WIN32_DLL
7c6b0e92 167
b150efee 168AC_PROG_LIBTOOL
bce1b489 169
dd365157
MS
170AM_PROG_CC_C_O
171
b150efee 172AC_PROG_MAKE_SET
bce1b489 173
252dde64
NN
174# -------
175# Headers
176# -------
177
bce1b489
BE
178# Sanity check for the cross-compilation case:
179AC_CHECK_HEADER(stdio.h,:,
180 [AC_MSG_ERROR([Can't find stdio.h.
181You must have a usable C system for the target already installed, at least
182including headers and, preferably, the library, before you can configure
183the Objective C runtime system. If necessary, install gcc now with
184\`LANGUAGES=c', then the target library, then build with \`LANGUAGES=objc'.])])
185
186AC_HEADER_STDC
187
d972a4c2
OP
188AC_CHECK_HEADERS(sched.h)
189
252dde64
NN
190# -----------
191# Miscellanea
192# -----------
193
fd312537
NP
194# Check if we have thread-local storage
195GCC_CHECK_TLS
bce1b489 196
539280a8
TS
197gt_BITFIELD_TYPE_MATTERS
198
114bf3f1
MK
199# -----------
200# boehm-gc
201# -----------
202
203AC_ARG_ENABLE(objc-gc,
204[AS_HELP_STRING([--enable-objc-gc],
205 [enable use of Boehm's garbage collector with the
ac02e9a8 206 GNU Objective-C runtime])],,enable_objc_gc=no)
114bf3f1
MK
207AC_ARG_WITH([target-bdw-gc],
208[AS_HELP_STRING([--with-target-bdw-gc=PATHLIST],
209 [specify prefix directory for installed bdw-gc package.
210 Equivalent to --with-target-bdw-gc-include=PATH/include
211 plus --with-target-bdw-gc-lib=PATH/lib])])
212AC_ARG_WITH([target-bdw-gc-include],
213[AS_HELP_STRING([--with-target-bdw-gc-include=PATHLIST],
214 [specify directories for installed bdw-gc include files])])
215AC_ARG_WITH([target-bdw-gc-lib],
216[AS_HELP_STRING([--with-target-bdw-gc-lib=PATHLIST],
217 [specify directories for installed bdw-gc library])])
218
219case "$enable_objc_gc" in
220no)
221 use_bdw_gc=no
222 ;;
223*)
224 AC_MSG_CHECKING([for bdw garbage collector])
225 if test "x$with_target_bdw_gc$with_target_bdw_gc_include$with_target_bdw_gc_lib" = x; then
226 dnl no bdw-gw options, fall back to the bdw-gc pkg-config module
227 PKG_CHECK_EXISTS(bdw-gc,
de683d58
MK
228 [AC_MSG_RESULT([using bdw-gc pkg-config module])
229 BDW_GC_CFLAGS=`$PKG_CONFIG --cflags bdw-gc`
230 BDW_GC_LIBS=`$PKG_CONFIG --libs bdw-gc`],
114bf3f1
MK
231 AC_MSG_ERROR([no --with-target-bdw-gc options and no bdw-gc pkg-config module found]))
232 else
233 dnl bdw-gw options passed by configure flags
234 if test "x$with_target_bdw_gc_include" = x && test "x$with_target_bdw_gc_lib" != x; then
235 AC_MSG_ERROR([found --with-target-bdw-gc-lib but --with-target-bdw-gc-include missing])
236 elif test "x$with_target_bdw_gc_include" != x && test "x$with_target_bdw_gc_lib" = x; then
237 AC_MSG_ERROR([found --with-target-bdw-gc-include but --with-target-bdw-gc-lib missing])
238 else
239 AC_MSG_RESULT([using paths configured with --with-target-bdw-gc options])
240 fi
241 mldir=`${CC-gcc} --print-multi-directory 2>/dev/null`
242 bdw_val=
243 if test "x$with_target_bdw_gc" != x; then
244 for i in `echo $with_target_bdw_gc | tr ',' ' '`; do
245 case "$i" in
246 *=*) sd=${i%%=*}; d=${i#*=} ;;
247 *) sd=.; d=$i ;;
248 esac
249 if test "$mldir" = "$sd"; then
250 bdw_val=$d
251 fi
252 done
253 if test "x$bdw_val" = x; then
254 AC_MSG_ERROR([no multilib path ($mldir) found in --with-target-bdw-gc])
255 fi
256 bdw_inc_dir="$bdw_val/include"
257 bdw_lib_dir="$bdw_val/lib"
258 fi
259 bdw_val=
260 if test "x$with_target_bdw_gc_include" != x; then
261 for i in `echo $with_target_bdw_gc_include | tr ',' ' '`; do
262 case "$i" in
263 *=*) sd=${i%%=*}; d=${i#*=} ;;
264 *) sd=.; d=$i ;;
265 esac
266 if test "$mldir" = "$sd"; then
267 bdw_val=$d
268 fi
269 done
270 if test "x$bdw_val" = x; then
271 AC_MSG_ERROR([no multilib path ($mldir) found in --with-target-bdw-gc-include])
272 fi
273 bdw_inc_dir="$bdw_val"
274 fi
275 bdw_val=
276 if test "x$with_target_bdw_gc_lib" != x; then
277 for i in `echo $with_target_bdw_gc_lib | tr ',' ' '`; do
278 case "$i" in
279 *=*) sd=${i%%=*}; d=${i#*=} ;;
280 *) sd=.; d=$i ;;
281 esac
282 if test "$mldir" = "$sd"; then
283 bdw_val=$d
284 fi
285 done
286 if test "x$bdw_val" = x; then
287 AC_MSG_ERROR([no multilib path ($mldir) found in --with-target-bdw-gc-lib])
288 fi
289 bdw_lib_dir="$bdw_val"
290 fi
291 if test "x$bdw_inc_dir" = x; then
292 AC_MSG_ERROR([no multilib path ($mldir) found in --with-target-bdw-gc-include])
293 fi
294 if test "x$bdw_lib_dir" = x; then
295 AC_MSG_ERROR([no multilib path ($mldir) found in --with-target-bdw-gc-lib])
296 fi
297 BDW_GC_CFLAGS="-I$bdw_inc_dir"
298 BDW_GC_LIBS="-L$bdw_lib_dir -lgc"
299 AC_MSG_RESULT([found])
300 fi
301
302 AC_MSG_CHECKING([for system boehm-gc])
303 save_CFLAGS=$CFLAGS
304 save_LIBS=$LIBS
305 CFLAGS="$CFLAGS $BDW_GC_CFLAGS"
306 LIBS="$LIBS $BDW_GC_LIBS"
307 dnl the link test is not good enough for ARM32 multilib detection,
308 dnl first check to link, then to run
309 AC_LINK_IFELSE(
310 [AC_LANG_PROGRAM([#include <gc/gc.h>],[GC_init()])],
311 [
312 AC_RUN_IFELSE([AC_LANG_SOURCE([[
313 #include <gc/gc.h>
314 int main() {
315 GC_init();
316 return 0;
317 }
318 ]])],
319 [system_bdw_gc_found=yes],
320 [system_bdw_gc_found=no],
321 dnl assume no system boehm-gc for cross builds ...
322 [system_bdw_gc_found=no]
323 )
324 ],
325 [system_bdw_gc_found=no])
326 CFLAGS=$save_CFLAGS
327 LIBS=$save_LIBS
328 if test x$enable_objc_gc = xauto && test x$system_bdw_gc_found = xno; then
329 AC_MSG_WARN([system bdw-gc not found, not building libobjc_gc])
330 use_bdw_gc=no
331 elif test x$enable_objc_gc = xyes && test x$system_bdw_gc_found = xno; then
332 AC_MSG_ERROR([system bdw-gc required but not found])
333 else
334 use_bdw_gc=yes
335 AC_MSG_RESULT([found])
336 fi
337esac
338
339if test "$use_bdw_gc" = no; then
340 OBJC_GCFLAGS=''
341 OBJC_BOEHM_GC=''
342 OBJC_BOEHM_GC_INCLUDES=''
343 OBJC_BOEHM_GC_LIBS=''
344else
345 OBJC_GCFLAGS='-DOBJC_WITH_GC=1'
346 OBJC_BOEHM_GC='libobjc_gc$(libsuffix).la'
347 OBJC_BOEHM_GC_INCLUDES=$BDW_GC_CFLAGS
348 OBJC_BOEHM_GC_LIBS=$BDW_GC_LIBS
349fi
350AC_SUBST(OBJC_GCFLAGS)
351AC_SUBST(OBJC_BOEHM_GC)
352AC_SUBST(OBJC_BOEHM_GC_INCLUDES)
353AC_SUBST(OBJC_BOEHM_GC_LIBS)
354
252dde64
NN
355# ------
356# Output
357# ------
bce1b489 358
2c888488
L
359if test ${multilib} = yes; then
360 multilib_arg="--enable-multilib"
361else
362 multilib_arg=
363fi
252dde64 364
2c888488 365AC_CONFIG_FILES([Makefile])
252dde64 366AC_OUTPUT