]> gcc.gnu.org Git - gcc.git/blame - boehm-gc/configure.ac
tree.h: Remove DECL_BY_REFERENCE from private_flag comment.
[gcc.git] / boehm-gc / configure.ac
CommitLineData
7ddf92a8 1# Copyright (c) 1999, 2000, 2001, 2002, 2003, 2006 by Red Hat, Inc. All rights reserved.
d38d6003 2# Copyright 2004 Nathanael Nerode
5a2586cf
TT
3#
4# THIS MATERIAL IS PROVIDED AS IS, WITH ABSOLUTELY NO WARRANTY EXPRESSED
5# OR IMPLIED. ANY USE IS AT YOUR OWN RISK.
6#
7# Permission is hereby granted to use or copy this program
8# for any purpose, provided the above notices are retained on all copies.
9# Permission to modify the code and to distribute modified code is granted,
10# provided the above notices are retained, and a notice that the code was
11# modified is included with the above copyright notice.
12#
13# Original author: Tom Tromey
d38d6003 14# Modified by Nathanael Nerode
5a2586cf 15
1530be84
TT
16dnl Process this file with autoconf to produce configure.
17
8ab705be 18AC_PREREQ(2.59)
13b040f1
NN
19AC_INIT
20AC_CONFIG_SRCDIR(gcj_mlc.c)
6706f116
AO
21# This works around the fact that libtool configuration may change LD
22# for this particular configuration, but some shells, instead of
23# keeping the changes in LD private, export them just because LD is
24# exported.
25ORIGINAL_LD_FOR_MULTILIBS=$LD
26
bf9a420e 27AM_ENABLE_MULTILIB(, ..)
b1891e51 28
13b040f1
NN
29AC_CANONICAL_HOST
30AC_CANONICAL_TARGET
b1891e51 31
d38d6003 32# Get the 'noncanonical' system names.
13b040f1 33ACX_NONCANONICAL_TARGET
d38d6003 34
b1891e51
NN
35# This works around an automake problem.
36mkinstalldirs="`cd $ac_aux_dir && ${PWDCMD-pwd}`/mkinstalldirs"
37AC_SUBST(mkinstalldirs)
38
54f28c21 39AM_INIT_AUTOMAKE(gc, 6.6, no-define)
a749e46c
NN
40
41# The autoconf 2.5x version of the no-executables hack.
a749e46c
NN
42GCC_NO_EXECUTABLES
43
44# Yak. We must force CC and CXX to /not/ be precious variables; otherwise
45# the wrong, non-multilib-adjusted value will be used in multilibs.
46# As a side effect, we have to subst CFLAGS and CXXFLAGS ourselves.
47
48m4_rename([_AC_ARG_VAR_PRECIOUS],[real_PRECIOUS])
49m4_define([_AC_ARG_VAR_PRECIOUS],[])
50AC_PROG_CC
51AC_PROG_CXX
52m4_rename([real_PRECIOUS],[_AC_ARG_VAR_PRECIOUS])
53
bf9a420e
PB
54AM_PROG_CC_C_O
55
a749e46c
NN
56AC_SUBST(CFLAGS)
57AC_SUBST(CXXFLAGS)
58
7664e6f8
NN
59# Newer automakes demand CCAS and CCASFLAGS.
60: ${CCAS='$(CC)'}
61: ${CCASFLAGS='$(CFLAGS)'}
62AC_SUBST(CCAS)
63AC_SUBST(CCASFLAGS)
64
a749e46c
NN
65AC_CHECK_TOOL(AS, as)
66AC_CHECK_TOOL(AR, ar)
67AC_CHECK_TOOL(RANLIB, ranlib, :)
68
69AC_PROG_INSTALL
70
71AM_MAINTAINER_MODE
72
13b040f1 73. ${srcdir}/configure.host
a749e46c 74
13b040f1
NN
75case ${gc_basedir} in
76/* | [A-Za-z]:[/\\]*) gc_flagbasedir=${gc_basedir} ;;
77*) gc_flagbasedir='$(top_builddir)/'${gc_basedir} ;;
a749e46c
NN
78esac
79
13b040f1 80gc_cflags="${gc_cflags} -Iinclude -I"'$(top_builddir)'"/./targ-include -I${gc_flagbasedir}/libc/include"
a749e46c
NN
81case "${host}" in
82 *-*-cygwin32*)
13b040f1 83 gc_cflags="${gc_cflags} -I${gc_flagbasedir}/../winsup/include"
a749e46c
NN
84 ;;
85esac
86
13b040f1 87dnl gc_cflags="${gc_cflags} -fno-builtin"
a749e46c
NN
88
89GC_CFLAGS=${gc_cflags}
90AC_SUBST(GC_CFLAGS)
1530be84 91
13b040f1 92AC_PROG_LIBTOOL
66deb2be 93
1530be84
TT
94dnl We use these options to decide which functions to include.
95AC_ARG_WITH(target-subdir,
61e922d2
RO
96[ --with-target-subdir=SUBDIR
97 configuring with a cross compiler])
1530be84 98AC_ARG_WITH(cross-host,
61e922d2 99[ --with-cross-host=HOST configuring with a cross compiler])
1530be84 100
0ff95153
TT
101AC_MSG_CHECKING([for thread model used by GCC])
102THREADS=`$CC -v 2>&1 | sed -n 's/^Thread model: //p'`
103if test -z "$THREADS"; then
104 THREADS=no
105fi
106AC_MSG_RESULT([$THREADS])
5a2586cf
TT
107
108AC_ARG_ENABLE(parallel-mark,
109[ --enable-parallel-mark parallelize marking and free list construction],
110 [case "$THREADS" in
111 no | none | single)
112 AC_MSG_ERROR([Parallel mark requires --enable-threads=x spec])
113 ;;
114 esac]
115)
1530be84 116
bf9a420e 117AM_CPPFLAGS="-I`cd $srcdir && ${PWDCMD-pwd}`/include"
e301621d 118THREADLIBS=
1530be84
TT
119case "$THREADS" in
120 no | none | single)
121 THREADS=none
122 ;;
f3968b05 123 posix | posix95 | pthreads)
1530be84 124 THREADS=posix
62aa6b06 125 THREADLIBS=-lpthread
1530be84 126 case "$host" in
30c3de1f 127 x86-*-linux* | ia64-*-linux* | i586-*-linux* | i686-*-linux* | x86_64-*-linux* | alpha-*-linux*)
5572488d
KC
128 AC_DEFINE(GC_LINUX_THREADS,1,[support for Xavier Leroy's Linux threads])
129 AC_DEFINE(_REENTRANT,1,[Use reentrant code])
30c3de1f 130 if test "${enable_parallel_mark}" = yes; then
5572488d 131 AC_DEFINE(PARALLEL_MARK,1,[allow the marker to run in multiple threads])
5a2586cf 132 fi
5572488d 133 AC_DEFINE(THREAD_LOCAL_ALLOC,1,[define GC_local_malloc() & GC_local_malloc_atomic()])
5a2586cf 134 ;;
1530be84 135 *-*-linux*)
5572488d
KC
136 AC_DEFINE(GC_LINUX_THREADS,1)
137 AC_DEFINE(_REENTRANT,1)
1530be84 138 ;;
30c3de1f 139 *-*-aix*)
5572488d
KC
140 AC_DEFINE(GC_AIX_THREADS,1,[support AIX threads])
141 AC_DEFINE(_REENTRANT,1)
30c3de1f 142 ;;
d0c03515
AT
143 *-*-hpux11*)
144 AC_MSG_WARN("Only HP-UX 11 POSIX threads are supported.")
5572488d
KC
145 AC_DEFINE(GC_HPUX_THREADS,1,[enables support for HP/UX 11 pthreads])
146 AC_DEFINE(_POSIX_C_SOURCE,199506L,[POSIX version of C Source])
5a2586cf 147 if test "${enable_parallel_mark}" = yes; then
5572488d 148 AC_DEFINE(PARALLEL_MARK,1)
5a2586cf 149 fi
5572488d 150 AC_DEFINE(THREAD_LOCAL_ALLOC,1)
5a2586cf 151 THREADLIBS="-lpthread -lrt"
d0c03515
AT
152 # HPUX needs REENTRANT for the _r calls.
153 AC_DEFINE(_REENTRANT, 1, [Required define if using POSIX threads])
154 ;;
155 *-*-hpux10*)
156 AC_MSG_WARN("Only HP-UX 11 POSIX threads are supported.")
5a2586cf 157 ;;
eb496303
PS
158 *-*-kfreebsd*-gnu)
159 AC_DEFINE(GC_FREEBSD_THREADS)
160 INCLUDES="$INCLUDES -pthread"
161 THREADDLLIBS=-pthread
162 AC_DEFINE(_REENTRANT)
163 if test "${enable_parallel_mark}" = yes; then
164 AC_DEFINE(PARALLEL_MARK)
165 fi
166 AC_DEFINE(THREAD_LOCAL_ALLOC)
167 AC_DEFINE(USE_COMPILER_TLS, 1,[use tls for boehm])
168 ;;
62aa6b06 169 *-*-freebsd*)
79f777fd 170 AC_MSG_WARN("FreeBSD does not yet fully support threads with Boehm GC.")
5572488d 171 AC_DEFINE(GC_FREEBSD_THREADS,1,[support FreeBSD threads])
bf9a420e 172 AM_CPPFLAGS="$AM_CPPFLAGS -pthread"
62aa6b06
LR
173 THREADLIBS=-pthread
174 ;;
1530be84 175 *-*-solaris*)
5572488d 176 AC_DEFINE(GC_SOLARIS_PTHREADS,1,[support for Solaris pthreads])
28e2ff77
RO
177 # Need to use alternate thread library, otherwise gctest hangs
178 # on Solaris 8.
179 multi_os_directory=`$CC -print-multi-os-directory`
180 THREADLIBS="-L/usr/lib/lwp/$multi_os_directory \
181 -R/usr/lib/lwp/$multi_os_directory -lpthread -lthread -lrt"
1530be84 182 ;;
14caa62f 183 *-*-irix*)
5572488d 184 AC_DEFINE(GC_IRIX_THREADS,1,[support for Irix pthreads])
14caa62f 185 ;;
a2d6e915 186 *-*-cygwin*)
5572488d 187 AC_DEFINE(GC_WIN32_THREADS,1,[support for win32 threads])
30c3de1f
JS
188 ;;
189 *-*-darwin*)
5572488d
KC
190 AC_DEFINE(GC_DARWIN_THREADS,1,[support for Mac OS X pthreads])
191 AC_DEFINE(THREAD_LOCAL_ALLOC,1)
30c3de1f 192 if test "${enable_parallel_mark}" = yes; then
5572488d 193 AC_DEFINE(PARALLEL_MARK,1)
30c3de1f
JS
194 fi
195 ;;
196 *-*-osf*)
5572488d 197 AC_DEFINE(GC_OSF1_THREADS,1,[support for Tru64 pthreads])
30c3de1f 198 if test "${enable_parallel_mark}" = yes; then
5572488d
KC
199 AC_DEFINE(PARALLEL_MARK,1)
200 AC_DEFINE(THREAD_LOCAL_ALLOC,1)
30c3de1f
JS
201 # May want to enable it in other cases, too.
202 # Measurements havent yet been done.
203 fi
bf9a420e 204 AM_CPPFLAGS="$AM_CPPFLAGS -pthread"
30c3de1f 205 THREADLIBS="-lpthread -lrt"
a2d6e915 206 ;;
1530be84
TT
207 esac
208 ;;
df61a3d2 209 win32)
5572488d 210 AC_DEFINE(GC_WIN32_THREADS,1)
aa44273b
HB
211 dnl Old wine getenv may not return NULL for missing entry.
212 dnl Define EMPTY_GETENV_RESULTS here to work around the bug.
30c3de1f
JS
213 ;;
214 dgux386)
215 THREADS=dgux386
216AC_MSG_RESULT($THREADLIBS)
217 # Use pthread GCC switch
218 THREADLIBS=-pthread
219 if test "${enable_parallel_mark}" = yes; then
5572488d 220 AC_DEFINE(PARALLEL_MARK,1)
e83a44d2 221 fi
5572488d
KC
222 AC_DEFINE(THREAD_LOCAL_ALLOC,1)
223 AC_DEFINE(GC_DGUX386_THREADS,1,[support for DB/UX on I386 threads])
224 AC_DEFINE(DGUX_THREADS,1,[No description])
30c3de1f 225 # Enable _POSIX4A_DRAFT10_SOURCE with flag -pthread
bf9a420e 226 AM_CPPFLAGS="-pthread $AM_CPPFLAGS"
30c3de1f
JS
227 ;;
228 aix)
229 THREADS=posix
230 THREADLIBS=-lpthread
5572488d
KC
231 AC_DEFINE(GC_AIX_THREADS,1)
232 AC_DEFINE(_REENTRANT,1)
df61a3d2
AM
233 ;;
234 decosf1 | irix | mach | os2 | solaris | dce | vxworks)
1530be84
TT
235 AC_MSG_ERROR(thread package $THREADS not yet supported)
236 ;;
237 *)
238 AC_MSG_ERROR($THREADS is an unknown thread package)
239 ;;
240esac
e301621d 241AC_SUBST(THREADLIBS)
1530be84 242
8c048b48 243case "$host" in
30c3de1f
JS
244 powerpc-*-darwin*)
245 powerpc_darwin=true
246 ;;
247esac
248AM_CONDITIONAL(POWERPC_DARWIN,test x$powerpc_darwin = xtrue)
249
4f6d8cc8
GK
250# Darwin needs a few extra special tests to deal with variation in the
251# system headers.
252case "$host" in
253 powerpc*-*-darwin*)
254 AC_CHECK_MEMBER(ppc_thread_state_t.r0,
583cb3d3
AT
255 AC_DEFINE(HAS_PPC_THREAD_STATE_R0,1,
256 [ppc_thread_state_t has field r0]),,
4f6d8cc8
GK
257 [#include <mach/thread_status.h>])
258 AC_CHECK_MEMBER(ppc_thread_state_t.__r0,
583cb3d3
AT
259 AC_DEFINE(HAS_PPC_THREAD_STATE___R0,1,dnl
260 [ppc_thread_state_t has field __r0]),,
4f6d8cc8
GK
261 [#include <mach/thread_status.h>])
262 AC_CHECK_MEMBER(ppc_thread_state64_t.r0,
583cb3d3
AT
263 AC_DEFINE(HAS_PPC_THREAD_STATE64_R0,1,dnl
264 [ppc_thread_state64_t has field r0]),,
4f6d8cc8
GK
265 [#include <mach/thread_status.h>])
266 AC_CHECK_MEMBER(ppc_thread_state64_t.__r0,
583cb3d3
AT
267 AC_DEFINE(HAS_PPC_THREAD_STATE64___R0,1,dnl
268 [ppc_thread_state64_t has field __r0]),,
4f6d8cc8
GK
269 [#include <mach/thread_status.h>])
270 ;;
271 i?86*-*-darwin*)
583cb3d3
AT
272 AC_CHECK_MEMBER(x86_thread_state32_t.eax,
273 AC_DEFINE(HAS_X86_THREAD_STATE32_EAX,1,dnl
274 [x86_thread_state32_t has field eax]),,
9a35ada5 275 [#include <sys/cdefs.h>
583cb3d3
AT
276 #include <mach/thread_status.h>])
277 AC_CHECK_MEMBER(x86_thread_state32_t.__eax,
278 AC_DEFINE(HAS_X86_THREAD_STATE32___EAX,1,dnl
279 [x86_thread_state32_t has field __eax]),,
9a35ada5 280 [#include <sys/cdefs.h>
583cb3d3 281 #include <mach/thread_status.h>])
4f6d8cc8 282 ;;
583cb3d3
AT
283 x86_64-*-darwin*)
284 AC_CHECK_MEMBER(x86_thread_state64_t.rax,
285 AC_DEFINE(HAS_X86_THREAD_STATE64_RAX,1,dnl
286 [x86_thread_state64_t has field rax]),,
287 [#include <sys/cdefs.h>
288 #include <mach/thread_status.h>])
289 AC_CHECK_MEMBER(x86_thread_state64_t.__rax,
290 AC_DEFINE(HAS_X86_THREAD_STATE64___RAX,1,dnl
291 [x86_thread_state64_t has field __rax]),,
292 [#include <sys/cdefs.h>
293 #include <mach/thread_status.h>])
294 ;;
4f6d8cc8
GK
295 *) ;;
296esac
297
30c3de1f
JS
298# We never want libdl on darwin. It is a fake libdl that just ends up making
299# dyld calls anyway
300case "$host" in
301 *-*-darwin*) ;;
8c048b48 302 *)
30c3de1f
JS
303 AC_CHECK_LIB(dl, dlopen, EXTRA_TEST_LIBS="$EXTRA_TEST_LIBS -ldl")
304 ;;
305esac
306
53630715
AT
307# extra LD Flags which are required for targets
308case "${host}" in
309 *-*-darwin*)
310 extra_ldflags_libgc=-Wl,-single_module
311 ;;
312esac
313AC_SUBST(extra_ldflags_libgc)
314
f2beb7ef
APB
315AC_SUBST(EXTRA_TEST_LIBS)
316
5a2586cf 317target_all=libgcjgc.la
1530be84
TT
318AC_SUBST(target_all)
319
320dnl If the target is an eCos system, use the appropriate eCos
321dnl I/O routines.
322dnl FIXME: this should not be a local option but a global target
323dnl system; at present there is no eCos target.
324TARGET_ECOS="no"
325AC_ARG_WITH(ecos,
61e922d2 326[ --with-ecos enable runtime eCos target support],
1530be84
TT
327TARGET_ECOS="$with_ecos"
328)
329
330addobjs=
30c3de1f
JS
331addlibs=
332addincludes=
333addtests=
1530be84
TT
334case "$TARGET_ECOS" in
335 no)
336 ;;
337 *)
5572488d 338 AC_DEFINE(ECOS,1,[Target is ECOS])
bf9a420e 339 AM_CPPFLAGS="${AM_CPPFLAGS} -I${TARGET_ECOS}/include"
66deb2be 340 addobjs="$addobjs ecos.lo"
1530be84
TT
341 ;;
342esac
30c3de1f
JS
343
344if test "${enable_cplusplus}" = yes; then
345 addincludes="$addincludes include/gc_cpp.h include/gc_allocator.h"
346 addtests="$addtests test_cpp"
347fi
348
349AM_CONDITIONAL(CPLUSPLUS, test "${enable_cplusplus}" = yes)
350
1530be84
TT
351AC_SUBST(CXX)
352
bf9a420e 353AC_SUBST(AM_CPPFLAGS)
1530be84 354
30c3de1f
JS
355# Configuration of shared libraries
356#
357AC_MSG_CHECKING(whether to build shared libraries)
358AC_ENABLE_SHARED
359
360case "$host" in
361 alpha-*-openbsd*)
362 enable_shared=no
363 AC_MSG_RESULT(no)
364 ;;
365 *)
366 AC_MSG_RESULT(yes)
367 ;;
368esac
369
7ddf92a8
BM
370# Checks for pthreads functions
371#
372oldLIBS="$LIBS"
373LIBS="$LIBS $THREADLIBS"
374AC_CHECK_FUNCS([pthread_getattr_np])
375LIBS="$oldLIBS"
376
30c3de1f
JS
377# Configuration of machine-dependent code
378#
f0920e6c
JJ
379# Set NO_EXECUTE_PERMISSION by default because gcj already uses
380# ffi_closure_{alloc,free} which takes care of allocating trampolines
381# in executable memory.
b27317b5 382#
8c048b48 383AC_MSG_CHECKING(which machine-dependent code should be used)
1530be84
TT
384machdep=
385case "$host" in
adb60117
RH
386 alpha*-*-openbsd*)
387 machdep="alpha_mach_dep.lo"
4c7726b1
BM
388 if test x"${ac_cv_lib_dl_dlopen}" != xyes ; then
389 AC_MSG_WARN(OpenBSD/Alpha without dlopen(). Shared library support is disabled)
4c7726b1
BM
390 fi
391 ;;
30c3de1f 392 alpha*-*-linux*)
adb60117
RH
393 machdep="alpha_mach_dep.lo"
394 ;;
51ac684e 395 i?86-*-solaris2.[[89]] | i?86-*-solaris2.1?)
5572488d 396 AC_DEFINE(SOLARIS25_PROC_VDB_BUG_FIXED,1,[PROC_VDB in Solaris 2.5 gives wrong values for dirty bits])
adb60117 397 ;;
1530be84 398 mipstx39-*-elf*)
66deb2be 399 machdep="mips_ultrix_mach_dep.lo"
5572488d
KC
400 AC_DEFINE(STACKBASE, __stackbase,[No description])
401 AC_DEFINE(DATASTART_IS_ETEXT,1,[No description])
1530be84 402 ;;
276836f0
RO
403 mips-dec-ultrix*)
404 machdep="mips_ultrix_mach-dep.lo"
405 ;;
30c3de1f 406 mips-nec-sysv*|mips-unknown-sysv*)
5316699d 407 ;;
8c048b48
NN
408 mips*-*-linux*)
409 ;;
276836f0
RO
410 mips-*-*)
411 machdep="mips_sgi_mach_dep.lo"
d42058b1 412 ;;
30c3de1f
JS
413 sparc-*-netbsd*)
414 machdep="sparc_netbsd_mach_dep.lo"
415 ;;
51ac684e 416 sparc-sun-solaris2.3)
79f777fd 417 machdep="sparc_mach_dep.lo"
5572488d 418 AC_DEFINE(SUNOS53_SHARED_LIB,1,[Avoid Solaris 5.3 dynamic library bug])
1530be84 419 ;;
ab52d207 420 sparc*-sun-solaris2.*)
79f777fd
BM
421 machdep="sparc_mach_dep.lo"
422 ;;
423 ia64-*-*)
4c7726b1
BM
424 machdep="mach_dep.lo ia64_save_regs_in_stack.lo"
425 ;;
1530be84 426esac
f0920e6c 427AC_DEFINE(NO_EXECUTE_PERMISSION,1,[cause some or all of the heap to not have execute permission])
1530be84 428if test x"$machdep" = x; then
30c3de1f 429AC_MSG_RESULT($machdep)
66deb2be 430 machdep="mach_dep.lo"
1530be84
TT
431fi
432addobjs="$addobjs $machdep"
433AC_SUBST(addobjs)
30c3de1f
JS
434AC_SUBST(addincludes)
435AC_SUBST(addlibs)
436AC_SUBST(addtests)
437
30c3de1f
JS
438#
439# Check for AViiON Machines running DGUX
440#
441AC_MSG_CHECKING(if host is AViiON running DGUX)
442ac_is_dgux=no
443AC_CHECK_HEADER(sys/dg_sys_info.h,
444[ac_is_dgux=yes;])
445
8c048b48 446AC_MSG_RESULT($ac_is_dgux)
30c3de1f
JS
447 ## :GOTCHA: we do not check anything but sys/dg_sys_info.h
448if test $ac_is_dgux = yes; then
449 if test "$enable_full_debug" = "yes"; then
450 CFLAGS="-g -mstandard -DDGUX -D_DGUX_SOURCE -Di386 -mno-legend -O2"
451 CXXFLAGS="-g -mstandard -DDGUX -D_DGUX_SOURCE -Di386 -mno-legend -O2"
452 else
453 CFLAGS="-DDGUX -D_DGUX_SOURCE -Di386 -mno-legend -O2"
454 CXXFLAGS="-DDGUX -D_DGUX_SOURCE -Di386 -mno-legend -O2"
455 fi
456 AC_SUBST(CFLAGS)
457 AC_SUBST(CXXFLAGS)
458fi
459
1530be84
TT
460dnl As of 4.13a2, the collector will not properly work on Solaris when
461dnl built with gcc and -O. So we remove -O in the appropriate case.
ab52d207 462dnl Not needed anymore on Solaris.
30c3de1f 463AC_MSG_CHECKING(whether Solaris gcc optimization fix is necessary)
1530be84 464case "$host" in
ab52d207 465 *aix*)
1530be84 466 if test "$GCC" = yes; then
30c3de1f 467 AC_MSG_RESULT(yes)
1530be84
TT
468 new_CFLAGS=
469 for i in $CFLAGS; do
470 case "$i" in
471 -O*)
472 ;;
473 *)
474 new_CFLAGS="$new_CFLAGS $i"
475 ;;
476 esac
477 done
478 CFLAGS="$new_CFLAGS"
30c3de1f
JS
479 else
480 AC_MSG_RESULT(no)
1530be84
TT
481 fi
482 ;;
30c3de1f 483 *) AC_MSG_RESULT(no) ;;
1530be84
TT
484esac
485
486dnl We need to override the top-level CFLAGS. This is how we do it.
487MY_CFLAGS="$CFLAGS"
488AC_SUBST(MY_CFLAGS)
489
5a2586cf
TT
490dnl Include defines that have become de facto standard.
491dnl ALL_INTERIOR_POINTERS can be overridden in startup code.
5572488d
KC
492AC_DEFINE(SILENT,1,[disables statistics printing])
493AC_DEFINE(NO_SIGNALS,1,[does not disable signals])
494AC_DEFINE(ALL_INTERIOR_POINTERS,1,[allows all pointers to the interior of objects to be recognized])
5a2586cf
TT
495
496dnl By default, make the library as general as possible.
5572488d
KC
497AC_DEFINE(JAVA_FINALIZATION,1,[make it somewhat safer to finalize objects out of order])
498AC_DEFINE(GC_GCJ_SUPPORT,1,[include support for gcj])
499AC_DEFINE(ATOMIC_UNCOLLECTABLE,1,[include code for GC_malloc_atomic_uncollectable])
1530be84 500
3c1cbf58
HB
501AC_ARG_ENABLE(gc-debug,
502[ --enable-gc-debug include full support for pointer backtracing etc.],
503[ if test "$enable_gc_debug" = "yes"; then
5a2586cf 504 AC_MSG_WARN("Must define GC_DEBUG and use debug alloc. in clients.")
5572488d
KC
505 AC_DEFINE(KEEP_BACK_PTRS,1,[Add code to save back pointers])
506 AC_DEFINE(DBG_HDRS_ALL,1,[Make sure that all objects have debug headers])
5a2586cf 507 case $host in
79f777fd 508 ia64-*-linux* )
5572488d 509 AC_DEFINE(MAKE_BACK_GRAPH,1,[Enable GC_PRINT_BACK_HEIGHT environment variable])
79f777fd 510 ;;
48528b67 511 x86-*-linux* | i586-*-linux* | i686-*-linux* | x86_64-*-linux* )
5572488d 512 AC_DEFINE(MAKE_BACK_GRAPH,1)
5a2586cf 513 AC_MSG_WARN("Client must not use -fomit-frame-pointer.")
5572488d 514 AC_DEFINE(SAVE_CALL_COUNT, 8, [number of call frames saved with objects allocated through the debugging interface])
5a2586cf 515 ;;
30c3de1f 516 i[3456]86-*-dgux*)
5572488d 517 AC_DEFINE(MAKE_BACK_GRAPH,1)
30c3de1f 518 ;;
3c1cbf58
HB
519 esac
520 fi])
5a2586cf 521
5909b034
BM
522if test "${gc_use_mmap}" = "yes"; then
523 AC_DEFINE(USE_MMAP, 1, [use MMAP instead of sbrk to get new memory])
524fi
525
13b6e5b4
AO
526if test -n "$with_cross_host" &&
527 test x"$with_cross_host" != x"no"; then
d38d6003 528 toolexecdir='$(exec_prefix)/$(target_noncanonical)'
13b6e5b4
AO
529 toolexeclibdir='$(toolexecdir)/lib'
530else
d38d6003 531 toolexecdir='$(libdir)/gcc-lib/$(target_noncanonical)'
13b6e5b4
AO
532 toolexeclibdir='$(libdir)'
533fi
ff8b9ca8
AS
534multi_os_directory=`$CC -print-multi-os-directory`
535case $multi_os_directory in
536 .) ;; # Avoid trailing /.
537 *) toolexeclibdir=$toolexeclibdir/$multi_os_directory ;;
538esac
13b6e5b4
AO
539AC_SUBST(toolexecdir)
540AC_SUBST(toolexeclibdir)
b48ed568 541
1530be84
TT
542if test "${multilib}" = "yes"; then
543 multilib_arg="--enable-multilib"
544else
545 multilib_arg=
546fi
547
9a060b37 548AC_CONFIG_HEADERS([include/gc_config.h include/gc_ext_config.h])
4109fe85 549
785fad0a 550AC_CONFIG_FILES(Makefile include/Makefile threads.mk)
bf9a420e 551AC_OUTPUT
This page took 0.654833 seconds and 5 git commands to generate.