Makefile.in: Rebuilt.
[gcc.git] / boehm-gc / configure.in
1 dnl Process this file with autoconf to produce configure.
2
3 AC_INIT(gc_mark.h)
4
5 dnl Can't be done in BOEHM_CONFIGURE because that confuses automake.
6 AC_CONFIG_AUX_DIR(..)
7
8 AC_CANONICAL_SYSTEM
9
10 BOEHM_CONFIGURE(.)
11
12 dnl We use these options to decide which functions to include.
13 AC_ARG_WITH(target-subdir,
14 [ --with-target-subdir=SUBDIR Configuring with a cross compiler])
15 AC_ARG_WITH(cross-host,
16 [ --with-cross-host=HOST Configuring with a cross compiler])
17
18 AM_MAINTAINER_MODE
19 # automake wants to see AC_EXEEXT. But we don't need it. And having
20 # it is actually a problem, because the compiler we're passed can't
21 # necessarily do a full link. So we fool automake here.
22 if test "x" = "y"; then
23 AC_EXEEXT
24 fi
25
26 AC_MSG_CHECKING([for threads package to use])
27 AC_ARG_ENABLE(threads, [ --enable-threads=TYPE choose threading package],
28 THREADS=$enableval,
29 dnl FIXME: figure out native threads to use here.
30 THREADS=no)
31
32 if test "$THREADS" = yes; then
33 case "$host" in
34 *-*-vxworks*)
35 THREADS=vxworks
36 ;;
37 *-*-linux*)
38 # FIXME: this isn't correct in all cases.
39 THREADS=posix
40 ;;
41 *-*-win*)
42 THREADS=win32
43 ;;
44 *-*-irix*)
45 THREADS=irix
46 ;;
47 *-*-solaris*)
48 # FIXME: for now, choose POSIX, because we implement that.
49 # Later, choose solaris threads.
50 THREADS=posix
51 ;;
52 *)
53 # For now.
54 THREADS=none
55 ;;
56 esac
57 fi
58
59 INCLUDES=
60 case "$THREADS" in
61 no | none | single)
62 THREADS=none
63 ;;
64 posix | pthreads)
65 THREADS=posix
66 case "$host" in
67 *-*-linux*)
68 AC_DEFINE(LINUX_THREADS)
69 AC_DEFINE(_REENTRANT)
70 ;;
71 *-*-solaris*)
72 AC_DEFINE(SOLARIS_THREADS)
73 AC_DEFINE(_SOLARIS_PTHREADS)
74 ;;
75 esac
76 ;;
77 qt)
78 AC_DEFINE(QUICK_THREADS)
79 INCLUDES="-I${boehm_gc_basedir}/../qthreads"
80 ;;
81 decosf1 | irix | mach | os2 | solaris | win32 | dce | vxworks)
82 AC_MSG_ERROR(thread package $THREADS not yet supported)
83 ;;
84 *)
85 AC_MSG_ERROR($THREADS is an unknown thread package)
86 ;;
87 esac
88 AC_MSG_RESULT($THREADS)
89
90 AC_ARG_ENABLE(java-gc,
91 changequote(<<,>>)dnl
92 << --enable-java-gc=TYPE choose garbage collector [boehm]>>,
93 changequote([,])
94 GC=$enableval,
95 GC=boehm)
96 target_all=
97 if test "$GC" = "boehm"; then
98 target_all=libgcjgc.a
99 fi
100 AC_SUBST(target_all)
101
102 dnl If the target is an eCos system, use the appropriate eCos
103 dnl I/O routines.
104 dnl FIXME: this should not be a local option but a global target
105 dnl system; at present there is no eCos target.
106 TARGET_ECOS="no"
107 AC_ARG_WITH(ecos,
108 [ --with-ecos Enable runtime eCos target support.],
109 TARGET_ECOS="$with_ecos"
110 )
111
112 addobjs=
113 CXXINCLUDES=
114 case "$TARGET_ECOS" in
115 no)
116 ;;
117 *)
118 AC_DEFINE(ECOS)
119 CXXINCLUDES="-I${TARGET_ECOS}/include"
120 addobjs="$addobjs ecos.o"
121 ;;
122 esac
123 AC_SUBST(CXX)
124
125 AC_SUBST(INCLUDES)
126 AC_SUBST(CXXINCLUDES)
127
128 machdep=
129 case "$host" in
130 mipstx39-*-elf*)
131 machdep="mips_ultrix_mach_dep.o"
132 AC_DEFINE(STACKBASE, __stackbase)
133 AC_DEFINE(DATASTART_IS_ETEXT)
134 ;;
135 sparc-sun-solaris2.3*)
136 machdep="sparc_mach_dep.o"
137 AC_DEFINE(SUNOS53_SHARED_LIB)
138 ;;
139 esac
140 if test x"$machdep" = x; then
141 machdep="mach_dep.o"
142 fi
143 addobjs="$addobjs $machdep"
144 AC_SUBST(addobjs)
145
146 dnl As of 4.13a2, the collector will not properly work on Solaris when
147 dnl built with gcc and -O. So we remove -O in the appropriate case.
148 case "$host" in
149 sparc-sun-solaris2*)
150 if test "$GCC" = yes; then
151 new_CFLAGS=
152 for i in $CFLAGS; do
153 case "$i" in
154 -O*)
155 ;;
156 *)
157 new_CFLAGS="$new_CFLAGS $i"
158 ;;
159 esac
160 done
161 CFLAGS="$new_CFLAGS"
162 fi
163 ;;
164 esac
165
166 dnl We need to override the top-level CFLAGS. This is how we do it.
167 MY_CFLAGS="$CFLAGS"
168 AC_SUBST(MY_CFLAGS)
169
170 dnl Define a few things to retarget the library towards
171 dnl embedded Java.
172 AC_DEFINE(SILENT)
173 AC_DEFINE(NO_SIGNALS)
174 AC_DEFINE(NO_DEBUGGING)
175 AC_DEFINE(JAVA_FINALIZATION)
176
177 dnl Create boehm-config.h so that libjava can find it.
178 dnl It is required to use gc_priv.h, which is required to write
179 dnl a new marking function. So config.h in this package is
180 dnl poorly named.
181 AC_LINK_FILES(config.h, boehm-config.h)
182
183 dnl This is something of a hack. When cross-compiling we turn off
184 dnl some functionality. We also enable the "small" configuration.
185 dnl These is only correct when targetting an embedded system. FIXME.
186 if test -n "${with_cross_host}"; then
187 AC_DEFINE(NO_SIGSET)
188 AC_DEFINE(NO_CLOCK)
189 AC_DEFINE(SMALL_CONFIG)
190 fi
191
192 if test "${multilib}" = "yes"; then
193 multilib_arg="--enable-multilib"
194 else
195 multilib_arg=
196 fi
197
198 AC_OUTPUT(Makefile,
199 [
200 dnl Put all the -D options in a file. These are required before
201 dnl boehm-config.h can be included. This is a huge hack brought
202 dnl about by overall poor structuring of this entire library.
203 echo "$DEFS" > boehm-cflags
204
205 if test -n "$CONFIG_FILES"; then
206 ac_file=Makefile . ${boehm_gc_basedir}/../config-ml.in
207 fi],
208 srcdir=${srcdir}
209 host=${host}
210 target=${target}
211 with_multisubdir=${with_multisubdir}
212 ac_configure_args="${multilib_arg} ${ac_configure_args}"
213 CONFIG_SHELL=${CONFIG_SHELL-/bin/sh}
214 boehm_gc_basedir=${boehm_gc_basedir}
215 CC="${CC}"
216 DEFS="$DEFS"
217 )