Move libgcc_tm_file to toplevel libgcc
[gcc.git] / libgcc / configure.ac
1 dnl Process this file with autoconf to produce a configure script.
2
3 sinclude(../config/enable.m4)
4 sinclude(../config/tls.m4)
5 sinclude(../config/acx.m4)
6 sinclude(../config/no-executables.m4)
7 sinclude(../config/lib-ld.m4)
8 sinclude(../config/override.m4)
9 sinclude(../config/picflag.m4)
10 sinclude(../config/dfp.m4)
11 sinclude(../config/unwind_ipinfo.m4)
12
13 AC_PREREQ(2.64)
14 AC_INIT([GNU C Runtime Library], 1.0,,[libgcc])
15 AC_CONFIG_SRCDIR([static-object.mk])
16
17 AC_ARG_WITH(target-subdir,
18 [ --with-target-subdir=SUBDIR Configuring in a subdirectory for target])
19 AC_ARG_WITH(cross-host,
20 [ --with-cross-host=HOST Configuring with a cross compiler])
21 AC_ARG_WITH(ld,
22 [ --with-ld arrange to use the specified ld (full pathname)])
23
24 if test "${srcdir}" = "."; then
25 if test -n "${with_build_subdir}"; then
26 libgcc_topdir="${srcdir}/../.."
27 with_target_subdir=
28 elif test -z "${with_target_subdir}"; then
29 libgcc_topdir="${srcdir}/.."
30 else
31 if test "${with_target_subdir}" != "."; then
32 libgcc_topdir="${srcdir}/${with_multisrctop}../.."
33 else
34 libgcc_topdir="${srcdir}/${with_multisrctop}.."
35 fi
36 fi
37 else
38 libgcc_topdir="${srcdir}/.."
39 fi
40 AC_SUBST(libgcc_topdir)
41 AC_CONFIG_AUX_DIR($libgcc_topdir)
42
43 AC_ARG_ENABLE(shared,
44 [ --disable-shared don't provide a shared libgcc],
45 [
46 case $enable_shared in
47 yes | no) ;;
48 *)
49 enable_shared=no
50 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:,"
51 for pkg in $enableval; do
52 if test "X$pkg" = "Xgcc" || test "X$pkg" = "Xlibgcc"; then
53 enable_shared=yes
54 fi
55 done
56 IFS="$ac_save_ifs"
57 ;;
58 esac
59 ], [enable_shared=yes])
60 AC_SUBST(enable_shared)
61
62 GCC_PICFLAG
63 AC_SUBST(PICFLAG)
64
65 AC_MSG_CHECKING([for --enable-version-specific-runtime-libs])
66 AC_ARG_ENABLE(version-specific-runtime-libs,
67 [ --enable-version-specific-runtime-libs Specify that runtime libraries should be installed in a compiler-specific directory ],
68 [case "$enableval" in
69 yes) version_specific_libs=yes ;;
70 no) version_specific_libs=no ;;
71 *) AC_MSG_ERROR([Unknown argument to enable/disable version-specific libs]);;
72 esac],
73 [version_specific_libs=no])
74 AC_MSG_RESULT($version_specific_libs)
75
76 AC_ARG_WITH(slibdir,
77 [ --with-slibdir=DIR shared libraries in DIR [LIBDIR]],
78 slibdir="$with_slibdir",
79 if test "${version_specific_libs}" = yes; then
80 slibdir='$(libsubdir)'
81 elif test -n "$with_cross_host" && test x"$with_cross_host" != x"no"; then
82 slibdir='$(exec_prefix)/$(host_noncanonical)/lib'
83 else
84 slibdir='$(libdir)'
85 fi)
86 AC_SUBST(slibdir)
87
88 # Command-line options.
89 # Very limited version of AC_MAINTAINER_MODE.
90 AC_ARG_ENABLE([maintainer-mode],
91 [AC_HELP_STRING([--enable-maintainer-mode],
92 [enable make rules and dependencies not useful (and
93 sometimes confusing) to the casual installer])],
94 [case ${enable_maintainer_mode} in
95 yes) MAINT='' ;;
96 no) MAINT='#' ;;
97 *) AC_MSG_ERROR([--enable-maintainer-mode must be yes or no]) ;;
98 esac
99 maintainer_mode=${enableval}],
100 [MAINT='#'])
101 AC_SUBST([MAINT])dnl
102
103 AC_PROG_INSTALL
104
105 AC_PROG_AWK
106 # We need awk; bail out if it's missing.
107 case ${AWK} in
108 "") AC_MSG_ERROR([can't build without awk, bailing out]) ;;
109 esac
110
111 AC_CANONICAL_HOST
112 ACX_NONCANONICAL_HOST
113 ACX_NONCANONICAL_TARGET
114 GCC_TOPLEV_SUBDIRS
115
116 # Calculate toolexeclibdir
117 # Also toolexecdir, though it's only used in toolexeclibdir
118 case ${version_specific_libs} in
119 yes)
120 # Need the gcc compiler version to know where to install libraries
121 # and header files if --enable-version-specific-runtime-libs option
122 # is selected.
123 toolexecdir='$(libdir)/gcc/$(target_noncanonical)'
124 toolexeclibdir='$(toolexecdir)/$(gcc_version)$(MULTISUBDIR)'
125 ;;
126 no)
127 if test -n "$with_cross_host" &&
128 test x"$with_cross_host" != x"no"; then
129 # Install a library built with a cross compiler in tooldir, not libdir.
130 toolexecdir='$(exec_prefix)/$(target_noncanonical)'
131 toolexeclibdir='$(toolexecdir)/lib'
132 else
133 toolexecdir='$(libdir)/gcc-lib/$(target_noncanonical)'
134 toolexeclibdir='$(libdir)'
135 fi
136 multi_os_directory=`$CC -print-multi-os-directory`
137 case $multi_os_directory in
138 .) ;; # Avoid trailing /.
139 *) toolexeclibdir=$toolexeclibdir/$multi_os_directory ;;
140 esac
141 ;;
142 esac
143 AC_SUBST(toolexecdir)
144 AC_SUBST(toolexeclibdir)
145
146 dnl These must be called before AM_PROG_LIBTOOL, because it may want
147 dnl to call AC_CHECK_PROG.
148 AC_CHECK_TOOL(AR, ar)
149 AC_CHECK_TOOL(LIPO, lipo, :)
150 AC_CHECK_TOOL(NM, nm)
151 AC_CHECK_TOOL(RANLIB, ranlib, :)
152 AC_CHECK_TOOL(STRIP, strip, :)
153 AC_PROG_LN_S
154
155 GCC_NO_EXECUTABLES
156 AC_PROG_CC
157 AC_PROG_CPP_WERROR
158
159 AC_CHECK_SIZEOF([double])
160 AC_CHECK_SIZEOF([long double])
161 AS_VAR_ARITH([double_type_size], [$ac_cv_sizeof_double \* 8])
162 AS_VAR_ARITH([long_double_type_size], [$ac_cv_sizeof_long_double \* 8])
163 AC_SUBST(double_type_size)
164 AC_SUBST(long_double_type_size)
165
166 # Check for decimal float support.
167 AC_CACHE_CHECK([whether decimal floating point is supported], [libgcc_cv_dfp],
168 [AC_COMPILE_IFELSE([_Decimal32 x;], [libgcc_cv_dfp=yes],
169 [libgcc_cv_dfp=no])])
170 decimal_float=$libgcc_cv_dfp
171 AC_SUBST(decimal_float)
172
173 GCC_AC_ENABLE_DECIMAL_FLOAT([$host])
174
175 # Check for fixed-point support.
176 AC_CACHE_CHECK([whether fixed-point is supported], [libgcc_cv_fixed_point],
177 [AC_COMPILE_IFELSE([_Sat _Fract x;], [libgcc_cv_fixed_point=yes],
178 [libgcc_cv_fixed_point=no])])
179 fixed_point=$libgcc_cv_fixed_point
180 AC_SUBST(fixed_point)
181
182 # For platforms with the unwind ABI which includes an unwind library,
183 # libunwind, we can choose to use the system libunwind.
184 # config.gcc also contains tests of with_system_libunwind.
185 GCC_CHECK_UNWIND_GETIPINFO
186
187 # The sjlj test is almost duplicated here and in libgo/configure.ac (for C),
188 # libstdc++-v3/acinclude.m4 and libjava/configure.ac (for C++), and
189 # libobjc/configure.ac (for Objective-C).
190 # FIXME: This should be centralized in config/sjlj.m4.
191 AC_ARG_ENABLE(sjlj-exceptions,
192 AC_HELP_STRING([--enable-sjlj-exceptions],
193 [force use of builtin_setjmp for exceptions]),
194 [case "$enableval" in
195 yes|no|auto) ;;
196 *) AC_MSG_ERROR([unknown argument to --enable-sjlj-exceptions]) ;;
197 esac],
198 [enable_sjlj_exceptions=auto])
199
200 AC_CACHE_CHECK([whether to use setjmp/longjmp exceptions],
201 [libgcc_cv_lib_sjlj_exceptions],
202 [AC_LANG_CONFTEST(
203 [AC_LANG_SOURCE([
204 void bar ();
205 void clean (int *);
206 void foo ()
207 {
208 int i __attribute__ ((cleanup (clean)));
209 bar();
210 }
211 ])])
212 CFLAGS_hold=$CFLAGS
213 CFLAGS="--save-temps -fexceptions"
214 libgcc_cv_lib_sjlj_exceptions=unknown
215 AS_IF([ac_fn_c_try_compile],
216 [if grep _Unwind_SjLj_Resume conftest.s >/dev/null 2>&1; then
217 libgcc_cv_lib_sjlj_exceptions=yes
218 elif grep _Unwind_Resume conftest.s >/dev/null 2>&1; then
219 libgcc_cv_lib_sjlj_exceptions=no
220 fi])
221 CFLAGS=$CFLAGS_hold
222 rm -f conftest*
223 ])
224
225 if test "$enable_sjlj_exceptions" = "auto"; then
226 enable_sjlj_exceptions=$libgcc_cv_lib_sjlj_exceptions
227 fi
228
229 case $enable_sjlj_exceptions in
230 yes)
231 AC_DEFINE(LIBGCC_SJLJ_EXCEPTIONS, 1,
232 [Define if the C compiler is configured for setjmp/longjmp exceptions.])
233 ;;
234 no)
235 ;;
236 *)
237 AC_MSG_ERROR([unable to detect exception model])
238 ;;
239 esac
240
241 AC_LIB_PROG_LD_GNU
242
243 AC_MSG_CHECKING([for thread model used by GCC])
244 target_thread_file=`$CC -v 2>&1 | sed -n 's/^Thread model: //p'`
245 AC_MSG_RESULT([$target_thread_file])
246
247 # Check for assembler CFI support.
248 AC_CACHE_CHECK([whether assembler supports CFI directives], [libgcc_cv_cfi],
249 [AC_COMPILE_IFELSE(
250 [asm("\n\
251 .text\n\
252 .cfi_startproc\n\
253 .cfi_personality 0, symbol\n\
254 .cfi_endproc");],
255 [libgcc_cv_cfi=yes],
256 [libgcc_cv_cfi=no])])
257
258 # Check 32bit or 64bit for x86.
259 case ${host} in
260 i?86*-*-* | x86_64*-*-*)
261 cat > conftest.c <<EOF
262 #ifdef __x86_64__
263 host_address=64
264 #else
265 host_address=32
266 #endif
267 EOF
268 eval `${CC-cc} -E conftest.c | grep host_address=`
269 rm -f conftest.c
270 ;;
271 esac
272
273 # Collect host-machine-specific information.
274 . ${srcdir}/config.host
275
276 # Check if Solaris/x86 linker supports ZERO terminator unwind entries.
277 # This is after config.host so we can augment tmake_file.
278 # Link with -nostartfiles -nodefaultlibs since neither are present while
279 # building libgcc.
280 case ${host} in
281 i?86-*-solaris2* | x86_64-*-solaris2.1[[0-9]]*)
282 cat > conftest.s <<EOF
283 .section .eh_frame,"a",@unwind
284 .zero 4
285 .section .jcr,"aw",@progbits
286 .zero 8
287 EOF
288 if AC_TRY_COMMAND(${CC-cc} -shared -nostartfiles -nodefaultlibs -o conftest.so conftest.s 1>&AS_MESSAGE_LOG_FD); then
289 tmake_file="${tmake_file} i386/t-crtstuff"
290 fi
291 ;;
292 esac
293
294 # Check for visibility support. This is after config.host so that
295 # we can check for asm_hidden_op.
296 AC_CACHE_CHECK([for __attribute__((visibility("hidden")))],
297 libgcc_cv_hidden_visibility_attribute, [
298 echo 'int __attribute__ ((visibility ("hidden"))) foo (void) { return 1; }' > conftest.c
299 libgcc_cv_hidden_visibility_attribute=no
300 if AC_TRY_COMMAND(${CC-cc} -Werror -S conftest.c -o conftest.s 1>&AS_MESSAGE_LOG_FD); then
301 if grep "\\$asm_hidden_op.*foo" conftest.s >/dev/null; then
302 libgcc_cv_hidden_visibility_attribute=yes
303 fi
304 fi
305 rm -f conftest.*
306 ])
307
308 if test $libgcc_cv_hidden_visibility_attribute = yes; then
309 vis_hide='-fvisibility=hidden -DHIDE_EXPORTS'
310 else
311 vis_hide=
312 fi
313 AC_SUBST(vis_hide)
314
315 # See if we have thread-local storage. We can only test assembler
316 # sicne link-time and run-time tests require the newly built
317 # gcc, which can't be used to build executable due to that libgcc
318 # is yet to be built here.
319 GCC_CHECK_CC_TLS
320 set_have_cc_tls=
321 if test "$enable_tls $gcc_cv_have_cc_tls" = "yes yes"; then
322 set_have_cc_tls="-DHAVE_CC_TLS"
323 fi
324 AC_SUBST(set_have_cc_tls)
325
326 # See if we have emulated thread-local storage.
327 GCC_CHECK_EMUTLS
328 set_use_emutls=
329 if test "$enable_tls $gcc_cv_use_emutls" = "yes yes"; then
330 set_use_emutls="-DUSE_EMUTLS"
331 fi
332 AC_SUBST(set_use_emutls)
333
334 # Conditionalize the sfp-machine.h header for this target machine.
335 if test -z "${sfp_machine_header}"; then
336 sfp_machine_header=$cpu_type/sfp-machine.h
337 if test -f ${srcdir}/config/${sfp_machine_header}; then
338 :
339 else
340 sfp_machine_header=no-sfp-machine.h
341 fi
342 fi
343 AC_SUBST(sfp_machine_header)
344
345 # Conditionalize the makefile for this target machine.
346 tmake_file_=
347 for f in ${tmake_file}
348 do
349 if test -f ${srcdir}/config/$f
350 then
351 tmake_file_="${tmake_file_} \$(srcdir)/config/$f"
352 fi
353 done
354 tmake_file="${tmake_file_}"
355 AC_SUBST(tmake_file)
356
357 # Likewise export definitions for libgcc_tm.h
358 tm_file_=
359 for f in ${tm_file}
360 do
361 tm_file_="${tm_file_} \$(srcdir)/config/$f"
362 done
363 tm_file="${tm_file_}"
364 AC_SUBST(tm_file)
365 AC_SUBST(tm_defines)
366
367 # Substitute configuration variables
368 AC_SUBST(cpu_type)
369 AC_SUBST(extra_parts)
370 AC_SUBST(asm_hidden_op)
371 AC_CONFIG_LINKS([enable-execute-stack.c:$enable_execute_stack])
372 AC_CONFIG_LINKS([unwind.h:$unwind_header])
373 AC_CONFIG_LINKS([md-unwind-support.h:config/$md_unwind_header])
374 AC_CONFIG_LINKS([sfp-machine.h:config/$sfp_machine_header])
375
376 # We need multilib support.
377 AC_CONFIG_FILES([Makefile])
378 AC_CONFIG_COMMANDS([default],
379 [[test -z "$CONFIG_HEADERS" || echo timestamp > stamp-h
380 if test -n "$CONFIG_FILES"; then
381 # FIXME: We shouldn't need to set ac_file
382 ac_file=Makefile
383 . ${libgcc_topdir}/config-ml.in
384 fi]],
385 [[srcdir=${srcdir}
386 host=${host}
387 with_target_subdir=${with_target_subdir}
388 with_multisubdir=${with_multisubdir}
389 ac_configure_args="--enable-multilib ${ac_configure_args}"
390 CONFIG_SHELL=${CONFIG_SHELL-/bin/sh}
391 libgcc_topdir=${libgcc_topdir}
392 CC="${CC}"
393 ]])
394 AC_OUTPUT