1 dnl Process this file with autoconf to produce a configure script.
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/dfp.m4)
10 sinclude(../config/unwind_ipinfo.m4)
13 AC_INIT([GNU C Runtime Library], 1.0,,[libgcc])
14 AC_CONFIG_SRCDIR([static-object.mk])
16 AC_ARG_WITH(target-subdir,
17 [ --with-target-subdir=SUBDIR Configuring in a subdirectory for target])
18 AC_ARG_WITH(cross-host,
19 [ --with-cross-host=HOST Configuring with a cross compiler])
21 [ --with-ld arrange to use the specified ld (full pathname)])
23 if test "${srcdir}" = "."; then
24 if test -n "${with_build_subdir}"; then
25 libgcc_topdir="${srcdir}/../.."
27 elif test -z "${with_target_subdir}"; then
28 libgcc_topdir="${srcdir}/.."
30 if test "${with_target_subdir}" != "."; then
31 libgcc_topdir="${srcdir}/${with_multisrctop}../.."
33 libgcc_topdir="${srcdir}/${with_multisrctop}.."
37 libgcc_topdir="${srcdir}/.."
39 AC_SUBST(libgcc_topdir)
40 AC_CONFIG_AUX_DIR($libgcc_topdir)
43 [ --disable-shared don't provide a shared libgcc],
45 case $enable_shared in
49 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:,"
50 for pkg in $enableval; do
51 if test "X$pkg" = "Xgcc" || test "X$pkg" = "Xlibgcc"; then
58 ], [enable_shared=yes])
59 AC_SUBST(enable_shared)
61 AC_MSG_CHECKING([for --enable-version-specific-runtime-libs])
62 AC_ARG_ENABLE(version-specific-runtime-libs,
63 [ --enable-version-specific-runtime-libs Specify that runtime libraries should be installed in a compiler-specific directory ],
65 yes) version_specific_libs=yes ;;
66 no) version_specific_libs=no ;;
67 *) AC_MSG_ERROR([Unknown argument to enable/disable version-specific libs]);;
69 [version_specific_libs=no])
70 AC_MSG_RESULT($version_specific_libs)
73 [ --with-slibdir=DIR shared libraries in DIR [LIBDIR]],
74 slibdir="$with_slibdir",
75 if test "${version_specific_libs}" = yes; then
76 slibdir='$(libsubdir)'
77 elif test -n "$with_cross_host" && test x"$with_cross_host" != x"no"; then
78 slibdir='$(exec_prefix)/$(host_noncanonical)/lib'
84 # Command-line options.
85 # Very limited version of AC_MAINTAINER_MODE.
86 AC_ARG_ENABLE([maintainer-mode],
87 [AC_HELP_STRING([--enable-maintainer-mode],
88 [enable make rules and dependencies not useful (and
89 sometimes confusing) to the casual installer])],
90 [case ${enable_maintainer_mode} in
93 *) AC_MSG_ERROR([--enable-maintainer-mode must be yes or no]) ;;
95 maintainer_mode=${enableval}],
102 # We need awk; bail out if it's missing.
104 "") AC_MSG_ERROR([can't build without awk, bailing out]) ;;
108 ACX_NONCANONICAL_HOST
109 ACX_NONCANONICAL_TARGET
112 # Calculate toolexeclibdir
113 # Also toolexecdir, though it's only used in toolexeclibdir
114 case ${version_specific_libs} in
116 # Need the gcc compiler version to know where to install libraries
117 # and header files if --enable-version-specific-runtime-libs option
119 toolexecdir='$(libdir)/gcc/$(target_noncanonical)'
120 toolexeclibdir='$(toolexecdir)/$(gcc_version)$(MULTISUBDIR)'
123 if test -n "$with_cross_host" &&
124 test x"$with_cross_host" != x"no"; then
125 # Install a library built with a cross compiler in tooldir, not libdir.
126 toolexecdir='$(exec_prefix)/$(target_noncanonical)'
127 toolexeclibdir='$(toolexecdir)/lib'
129 toolexecdir='$(libdir)/gcc-lib/$(target_noncanonical)'
130 toolexeclibdir='$(libdir)'
132 multi_os_directory=`$CC -print-multi-os-directory`
133 case $multi_os_directory in
134 .) ;; # Avoid trailing /.
135 *) toolexeclibdir=$toolexeclibdir/$multi_os_directory ;;
139 AC_SUBST(toolexecdir)
140 AC_SUBST(toolexeclibdir)
142 dnl These must be called before AM_PROG_LIBTOOL, because it may want
143 dnl to call AC_CHECK_PROG.
144 AC_CHECK_TOOL(AR, ar)
145 AC_CHECK_TOOL(LIPO, lipo, :)
146 AC_CHECK_TOOL(NM, nm)
147 AC_CHECK_TOOL(RANLIB, ranlib, :)
148 AC_CHECK_TOOL(STRIP, strip, :)
155 AC_CHECK_SIZEOF([double])
156 AC_CHECK_SIZEOF([long double])
157 AS_VAR_ARITH([double_type_size], [$ac_cv_sizeof_double \* 8])
158 AS_VAR_ARITH([long_double_type_size], [$ac_cv_sizeof_long_double \* 8])
159 AC_SUBST(double_type_size)
160 AC_SUBST(long_double_type_size)
162 # Check for decimal float support.
163 AC_CACHE_CHECK([whether decimal floating point is supported], [libgcc_cv_dfp],
164 [AC_COMPILE_IFELSE([_Decimal32 x;], [libgcc_cv_dfp=yes],
165 [libgcc_cv_dfp=no])])
166 decimal_float=$libgcc_cv_dfp
167 AC_SUBST(decimal_float)
169 GCC_AC_ENABLE_DECIMAL_FLOAT([$host])
171 # Check for fixed-point support.
172 AC_CACHE_CHECK([whether fixed-point is supported], [libgcc_cv_fixed_point],
173 [AC_COMPILE_IFELSE([_Sat _Fract x;], [libgcc_cv_fixed_point=yes],
174 [libgcc_cv_fixed_point=no])])
175 fixed_point=$libgcc_cv_fixed_point
176 AC_SUBST(fixed_point)
178 # For platforms with the unwind ABI which includes an unwind library,
179 # libunwind, we can choose to use the system libunwind.
180 # config.gcc also contains tests of with_system_libunwind.
181 GCC_CHECK_UNWIND_GETIPINFO
185 AC_MSG_CHECKING([for thread model used by GCC])
186 target_thread_file=`$CC -v 2>&1 | sed -n 's/^Thread model: //p'`
187 AC_MSG_RESULT([$target_thread_file])
189 # Check for assembler CFI support.
190 AC_CACHE_CHECK([whether assembler supports CFI directives], [libgcc_cv_cfi],
195 .cfi_personality 0, symbol\n\
198 [libgcc_cv_cfi=no])])
200 # Check 32bit or 64bit for x86.
202 i?86*-*-* | x86_64*-*-*)
203 cat > conftest.c <<EOF
210 eval `${CC-cc} -E conftest.c | grep host_address=`
215 # Collect host-machine-specific information.
216 . ${srcdir}/config.host
218 # Check if Solaris/x86 linker supports ZERO terminator unwind entries.
219 # This is after config.host so we can augment tmake_file.
220 # Link with -nostartfiles -nodefaultlibs since neither are present while
223 i?86-*-solaris2* | x86_64-*-solaris2.1[[0-9]]*)
224 cat > conftest.s <<EOF
225 .section .eh_frame,"a",@unwind
227 .section .jcr,"aw",@progbits
230 if AC_TRY_COMMAND(${CC-cc} -shared -nostartfiles -nodefaultlibs -o conftest.so conftest.s 1>&AS_MESSAGE_LOG_FD); then
231 tmake_file="${tmake_file} i386/t-crtstuff"
236 # Check for visibility support. This is after config.host so that
237 # we can check for asm_hidden_op.
238 AC_CACHE_CHECK([for __attribute__((visibility("hidden")))],
239 libgcc_cv_hidden_visibility_attribute, [
240 echo 'int __attribute__ ((visibility ("hidden"))) foo (void) { return 1; }' > conftest.c
241 libgcc_cv_hidden_visibility_attribute=no
242 if AC_TRY_COMMAND(${CC-cc} -Werror -S conftest.c -o conftest.s 1>&AS_MESSAGE_LOG_FD); then
243 if grep "\\$asm_hidden_op.*foo" conftest.s >/dev/null; then
244 libgcc_cv_hidden_visibility_attribute=yes
250 if test $libgcc_cv_hidden_visibility_attribute = yes; then
251 vis_hide='-fvisibility=hidden -DHIDE_EXPORTS'
257 # See if we have thread-local storage. We can only test assembler
258 # sicne link-time and run-time tests require the newly built
259 # gcc, which can't be used to build executable due to that libgcc
260 # is yet to be built here.
263 if test "$enable_tls $gcc_cv_have_cc_tls" = "yes yes"; then
264 set_have_cc_tls="-DHAVE_CC_TLS"
266 AC_SUBST(set_have_cc_tls)
268 # See if we have emulated thread-local storage.
271 if test "$enable_tls $gcc_cv_use_emutls" = "yes yes"; then
272 set_use_emutls="-DUSE_EMUTLS"
274 AC_SUBST(set_use_emutls)
276 # Conditionalize the sfp-machine.h header for this target machine.
277 if test -z "${sfp_machine_header}"; then
278 sfp_machine_header=$cpu_type/sfp-machine.h
279 if test -f ${srcdir}/config/${sfp_machine_header}; then
282 sfp_machine_header=no-sfp-machine.h
285 AC_SUBST(sfp_machine_header)
287 # Conditionalize the makefile for this target machine.
289 for f in ${tmake_file}
291 if test -f ${srcdir}/config/$f
293 tmake_file_="${tmake_file_} \$(srcdir)/config/$f"
296 tmake_file="${tmake_file_}"
299 # Substitute configuration variables
301 AC_SUBST(extra_parts)
302 AC_SUBST(asm_hidden_op)
303 AC_CONFIG_LINKS([enable-execute-stack.c:$enable_execute_stack])
304 AC_CONFIG_LINKS([unwind.h:$unwind_header])
305 AC_CONFIG_LINKS([md-unwind-support.h:config/$md_unwind_header])
306 AC_CONFIG_LINKS([sfp-machine.h:config/$sfp_machine_header])
308 # We need multilib support.
309 AC_CONFIG_FILES([Makefile])
310 AC_CONFIG_COMMANDS([default],
311 [[test -z "$CONFIG_HEADERS" || echo timestamp > stamp-h
312 if test -n "$CONFIG_FILES"; then
313 # FIXME: We shouldn't need to set ac_file
315 . ${libgcc_topdir}/config-ml.in
319 with_target_subdir=${with_target_subdir}
320 with_multisubdir=${with_multisubdir}
321 ac_configure_args="--enable-multilib ${ac_configure_args}"
322 CONFIG_SHELL=${CONFIG_SHELL-/bin/sh}
323 libgcc_topdir=${libgcc_topdir}