]> git.ipfire.org Git - thirdparty/gcc.git/blame - libgcc/configure.ac
re PR libstdc++/38196 (num_put<>::do_put(bool) performs 'internal' padding incorrectl...
[thirdparty/gcc.git] / libgcc / configure.ac
CommitLineData
fa958513
DJ
1dnl Process this file with autoconf to produce a configure script.
2
6f461e76
L
3sinclude(../config/enable.m4)
4sinclude(../config/tls.m4)
fa958513
DJ
5sinclude(../config/acx.m4)
6sinclude(../config/no-executables.m4)
18c04407 7sinclude(../config/override.m4)
fa958513
DJ
8
9AC_PREREQ(2.59)
10AC_INIT([GNU C Runtime Library], 1.0,,[libgcc])
11AC_CONFIG_SRCDIR([static-object.mk])
12
13AC_ARG_WITH(target-subdir,
14[ --with-target-subdir=SUBDIR Configuring in a subdirectory for target])
15AC_ARG_WITH(cross-host,
16[ --with-cross-host=HOST Configuring with a cross compiler])
17AC_ARG_WITH(ld,
18[ --with-ld arrange to use the specified ld (full pathname)])
19
20if test "${srcdir}" = "."; then
21 if test -n "${with_build_subdir}"; then
22 libgcc_topdir="${srcdir}/../.."
23 with_target_subdir=
24 elif test -z "${with_target_subdir}"; then
25 libgcc_topdir="${srcdir}/.."
26 else
27 if test "${with_target_subdir}" != "."; then
28 libgcc_topdir="${srcdir}/${with_multisrctop}../.."
29 else
30 libgcc_topdir="${srcdir}/${with_multisrctop}.."
31 fi
32 fi
33else
34 libgcc_topdir="${srcdir}/.."
35fi
36AC_SUBST(libgcc_topdir)
37AC_CONFIG_AUX_DIR($libgcc_topdir)
38
39AC_ARG_ENABLE(shared,
40[ --disable-shared don't provide a shared libgcc],
41[
42 case $enable_shared in
43 yes | no) ;;
44 *)
45 enable_shared=no
46 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:,"
47 for pkg in $enableval; do
48 if test "X$pkg" = "Xgcc" || test "X$pkg" = "Xlibgcc"; then
49 enable_shared=yes
50 fi
51 done
52 IFS="$ac_save_ifs"
53 ;;
54 esac
55], [enable_shared=yes])
56AC_SUBST(enable_shared)
57
d6efbf5a
DJ
58AC_MSG_CHECKING([for --enable-version-specific-runtime-libs])
59AC_ARG_ENABLE(version-specific-runtime-libs,
60[ --enable-version-specific-runtime-libs Specify that runtime libraries should be installed in a compiler-specific directory ],
61[case "$enableval" in
62 yes) version_specific_libs=yes ;;
63 no) version_specific_libs=no ;;
64 *) AC_MSG_ERROR([Unknown argument to enable/disable version-specific libs]);;
65 esac],
66[version_specific_libs=no])
67AC_MSG_RESULT($version_specific_libs)
68
fa958513
DJ
69AC_ARG_WITH(slibdir,
70[ --with-slibdir=DIR shared libraries in DIR [LIBDIR]],
71slibdir="$with_slibdir",
d6efbf5a 72if test "${version_specific_libs}" = yes; then
fa958513 73 slibdir='$(libsubdir)'
d6efbf5a
DJ
74elif test -n "$with_cross_host" && test x"$with_cross_host" != x"no"; then
75 slibdir='$(exec_prefix)/$(host_noncanonical)/lib'
fa958513
DJ
76else
77 slibdir='$(libdir)'
78fi)
79AC_SUBST(slibdir)
80
81AC_PROG_INSTALL
82
83AC_PROG_AWK
84# We need awk; bail out if it's missing.
85case ${AWK} in
86 "") AC_MSG_ERROR([can't build without awk, bailing out]) ;;
87esac
88
89AC_CANONICAL_HOST
90ACX_NONCANONICAL_HOST
14e8fc8b 91GCC_TOPLEV_SUBDIRS
fa958513
DJ
92
93dnl These must be called before AM_PROG_LIBTOOL, because it may want
94dnl to call AC_CHECK_PROG.
95AC_CHECK_TOOL(AR, ar)
96AC_CHECK_TOOL(LIPO, lipo, :)
97AC_CHECK_TOOL(NM, nm)
98AC_CHECK_TOOL(RANLIB, ranlib, :)
99AC_CHECK_TOOL(STRIP, strip, :)
100AC_PROG_LN_S
101
102GCC_NO_EXECUTABLES
103AC_PROG_CC
104AC_PROG_CPP_WERROR
105
106# Check for decimal float support.
107AC_CACHE_CHECK([whether decimal floating point is supported], [libgcc_cv_dfp],
108 [AC_COMPILE_IFELSE([_Decimal32 x;], [libgcc_cv_dfp=yes],
109 [libgcc_cv_dfp=no])])
110decimal_float=$libgcc_cv_dfp
111AC_SUBST(decimal_float)
112
79b87c74
MM
113AC_ARG_ENABLE(decimal-float,
114[ --enable-decimal-float={no,yes,bid,dpd}
115 enable decimal float extension to C. Selecting 'bid'
116 or 'dpd' choses which decimal floating point format
117 to use],
118[
119 case $enable_decimal_float in
120 yes | no | bid | dpd) ;;
121 *) AC_MSG_ERROR(['$enable_decimal_float' is an invalid value for --enable-decimal-float.
122Valid choices are 'yes', 'bid', 'dpd', and 'no'.]) ;;
123 esac
124],
125[
96fccd0d 126 case $host in
79b87c74
MM
127 powerpc*-*-linux* | i?86*-*-linux* | x86_64*-*-linux*)
128 enable_decimal_float=yes
129 ;;
130 *)
131 enable_decimal_float=no
132 ;;
133 esac
134])
135
136# x86's use BID format instead of DPD
137if test x$enable_decimal_float = xyes; then
96fccd0d 138 case $host in
79b87c74
MM
139 i?86*-*-linux* | x86_64*-*-linux*)
140 enable_decimal_float=bid
141 ;;
142 *)
143 enable_decimal_float=dpd
144 ;;
145 esac
146fi
147AC_SUBST(enable_decimal_float)
148
8d2a9e0e
CF
149# Check for fixed-point support.
150AC_CACHE_CHECK([whether fixed-point is supported], [libgcc_cv_fixed_point],
151 [AC_COMPILE_IFELSE([_Sat _Fract x;], [libgcc_cv_fixed_point=yes],
152 [libgcc_cv_fixed_point=no])])
153fixed_point=$libgcc_cv_fixed_point
154AC_SUBST(fixed_point)
ff473280
L
155
156# Check 32bit or 64bit for x86.
157case ${host} in
158i?86*-*-* | x86_64*-*-*)
159 cat > conftest.c <<EOF
160#ifdef __x86_64__
161host_address=64
162#else
163host_address=32
164#endif
165EOF
166 eval `${CC-cc} -E conftest.c | grep host_address=`
167 rm -f conftest.c
168 ;;
169esac
8d2a9e0e 170
fa958513
DJ
171# Collect host-machine-specific information.
172. ${srcdir}/config.host
173
174# Check for visibility support. This is after config.host so that
175# we can check for asm_hidden_op.
176AC_CACHE_CHECK([for __attribute__((visibility("hidden")))],
177 libgcc_cv_hidden_visibility_attribute, [
178 echo 'int __attribute__ ((visibility ("hidden"))) foo (void) { return 1; }' > conftest.c
179 libgcc_cv_hidden_visibility_attribute=no
180 if AC_TRY_COMMAND(${CC-cc} -Werror -S conftest.c -o conftest.s 1>&AS_MESSAGE_LOG_FD); then
181 if grep "\\$asm_hidden_op.*foo" conftest.s >/dev/null; then
182 libgcc_cv_hidden_visibility_attribute=yes
183 fi
184 fi
185 rm -f conftest.*
186 ])
187
188if test $libgcc_cv_hidden_visibility_attribute = yes; then
189 vis_hide='-fvisibility=hidden -DHIDE_EXPORTS'
190else
191 vis_hide=
192fi
193AC_SUBST(vis_hide)
194
6f461e76
L
195# See if we have thread-local storage. We can only test assembler
196# sicne link-time and run-time tests require the newly built
197# gcc, which can't be used to build executable due to that libgcc
198# is yet to be built here.
199GCC_CHECK_CC_TLS
22867d02 200set_have_cc_tls=
b4e9c2c6 201if test "$enable_tls $gcc_cv_have_cc_tls" = "yes yes"; then
6f461e76
L
202 set_have_cc_tls="-DHAVE_CC_TLS"
203fi
204AC_SUBST(set_have_cc_tls)
205
fa958513
DJ
206# Conditionalize the makefile for this target machine.
207tmake_file_=
208for f in ${tmake_file}
209do
210 if test -f ${srcdir}/config/$f
211 then
212 tmake_file_="${tmake_file_} \$(srcdir)/config/$f"
213 fi
214done
215tmake_file="${tmake_file_}"
216AC_SUBST(tmake_file)
217
218# Substitute configuration variables
219AC_SUBST(extra_parts)
220AC_SUBST(asm_hidden_op)
221
222# We need multilib support.
223AC_CONFIG_FILES([Makefile])
224AC_CONFIG_COMMANDS([default],
225 [[test -z "$CONFIG_HEADERS" || echo timestamp > stamp-h
226if test -n "$CONFIG_FILES"; then
227 # FIXME: We shouldn't need to set ac_file
228 ac_file=Makefile
229 . ${libgcc_topdir}/config-ml.in
230fi]],
231[[srcdir=${srcdir}
232host=${host}
fa958513
DJ
233with_target_subdir=${with_target_subdir}
234with_multisubdir=${with_multisubdir}
235ac_configure_args="--enable-multilib ${ac_configure_args}"
236CONFIG_SHELL=${CONFIG_SHELL-/bin/sh}
237libgcc_topdir=${libgcc_topdir}
238CC="${CC}"
239]])
240AC_OUTPUT