]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/configure.in
Daily bump.
[thirdparty/gcc.git] / libstdc++-v3 / configure.in
CommitLineData
b2dad0e3 1# Process this file with autoconf to produce a configure script, like so:
d94611f1 2# aclocal, autoconf, autoheader, automake
b2dad0e3
BK
3
4AC_PREREQ(2.13)
5AC_INIT(src/complex.cc)
6AC_CONFIG_AUX_DIR(..)
7
8# Gets and sets build, host, target, *_vendor, *_cpu, *_os, etc.
9AC_CANONICAL_SYSTEM
10
11# We use these options to decide which functions to include.
12AC_ARG_WITH(target-subdir,
13[ --with-target-subdir=SUBDIR
14 configuring in a subdirectory])
15AC_ARG_WITH(cross-host,
16[ --with-cross-host=HOST configuring with a cross compiler])
17
f4c79fef
BK
18# Runs configure.host and configure.target. Have to run this before
19# the GLIBCPP_ENABLE_* macros below.
b2dad0e3 20GLIBCPP_CONFIGURE(.)
f4c79fef 21
b2dad0e3 22AC_LIBTOOL_DLOPEN
5780a46b 23AM_PROG_LIBTOOL
34791641
PE
24AC_SUBST(enable_shared)
25AC_SUBST(enable_static)
29bd52c8
PE
26GLIBCPP_CHECK_GNU_MAKE
27 if test "x$_cv_gnu_make_command" = "x"; then
99b51359 28 AC_MSG_ERROR([GNU make not found. Please install it or correct your path.])
29bd52c8 29 fi
b2dad0e3
BK
30AM_CONFIG_HEADER(config.h)
31
32# Check for c++ or library specific bits that don't require linking.
33GLIBCPP_CHECK_COMPILER_VERSION
b2dad0e3 34
8b8ab21c 35# Enable all the crazy c++ stuff. C_MBCHAR must come early.
7f586614 36GLIBCPP_ENABLE_DEBUG($USE_MAINTAINER_MODE)
b2dad0e3 37GLIBCPP_ENABLE_CSTDIO
e26cb7ab 38GLIBCPP_ENABLE_C_MBCHAR([yes])
34791641
PE
39GLIBCPP_ENABLE_LONG_LONG([yes])
40GLIBCPP_ENABLE_SHADOW([no])
b2dad0e3 41GLIBCPP_ENABLE_THREADS
e974e9cc 42GLIBCPP_ENABLE_ATOMICITY
32a4595e 43GLIBCPP_ENABLE_CXX_FLAGS([none])
b2dad0e3 44
cde28f0d 45
b2dad0e3
BK
46if test -n "$with_cross_host"; then
47
48 # We are being configured with a cross compiler. AC_REPLACE_FUNCS
49 # may not work correctly, because the compiler may not be able to
50 # link executables.
51
52 xcompiling=1
53 NATIVE=no
54 # If Canadian cross, then don't pick up tools from the build
55 # directory.
56 if test "$build" != "$with_cross_host"; then
57 CANADIAN=yes
58 NULL_TARGET=yes
59 else
60 CANADIAN=no
61 NULL_TARGET=no
62 fi
63
64 case "$target_alias" in
65 *-wince-*)
66 # Configure for Microsoft Windows CE, or whatever they are
67 # currently calling it.
68 AC_DEFINE(HAVE_FLOAT_H)
69
1fd2f510
BK
70 AC_DEFINE(HAVE__FINITE)
71 AC_DEFINE(HAVE__ISNAN)
72 AC_DEFINE(HAVE__COPYSIGN)
73 AC_DEFINE(HAVE__FPCLASS)
74 AC_DEFINE(HAVE_MODF)
75
76 ctype_include_dir="config/os/wince"
5e53dba6
BK
77 AC_LINK_FILES($ctype_include_dir/bits/ctype_base.h,
78 include/bits/ctype_base.h)
1fd2f510 79 AC_LINK_FILES($ctype_include_dir/bits/ctype_inline.h, \
5e53dba6 80 include/bits/ctype_inline.h)
1fd2f510 81 AC_LINK_FILES($ctype_include_dir/bits/ctype_noninline.h, \
5e53dba6 82 include/bits/ctype_noninline.h)
e974e9cc 83
1fd2f510
BK
84 AC_DEFINE(_GLIBCPP_BUGGY_FLOAT_COMPLEX)
85 AC_DEFINE(_GLIBCPP_BUGGY_COMPLEX)
b2dad0e3
BK
86 ;;
87 *)
88 # We assume newlib. This lets us hard-code the functions we know
89 # we'll have.
1fd2f510
BK
90 AC_DEFINE(HAVE_FINITE)
91 AC_DEFINE(HAVE_ISNAN)
92 AC_DEFINE(HAVE_ISNANF)
93 AC_DEFINE(HAVE_ISINF)
94 AC_DEFINE(HAVE_ISINFF)
95
96 ctype_include_dir="config/os/newlib"
5e53dba6
BK
97 AC_LINK_FILES($ctype_include_dir/bits/ctype_base.h,
98 include/bits/ctype_base.h)
1fd2f510 99 AC_LINK_FILES($ctype_include_dir/bits/ctype_inline.h, \
5e53dba6 100 include/bits/ctype_inline.h)
1fd2f510 101 AC_LINK_FILES($ctype_include_dir/bits/ctype_noninline.h, \
5e53dba6 102 include/bits/ctype_noninline.h)
b2dad0e3 103
1fd2f510
BK
104 AC_DEFINE(_GLIBCPP_BUGGY_FLOAT_COMPLEX)
105 AC_DEFINE(_GLIBCPP_BUGGY_COMPLEX)
34791641 106 # need to check for faster f versions of math functions, ie sinf?
b2dad0e3
BK
107 ;;
108 esac
109else
110
111 # We are being configured natively. We can do more elaborate tests
112 # that include AC_TRY_COMPILE now, as the linker is assumed to be
113 # working.
114
115 xcompiling=0
116 NATIVE=yes
117 CANADIAN=no
118 NULL_TARGET=no
119
120 # Check for available headers.
121 AC_CHECK_HEADERS([nan.h ieeefp.h endian.h sys/isa_defs.h machine/endian.h \
34791641 122 machine/param.h sys/machine.h fp.h locale.h float.h inttypes.h gconv.h])
b2dad0e3 123
c470c17d
BK
124 GLIBCPP_CHECK_COMPILER_FEATURES
125 GLIBCPP_CHECK_LINKER_FEATURES
b2dad0e3
BK
126 GLIBCPP_CHECK_BUILTIN_MATH_SUPPORT
127 GLIBCPP_CHECK_MATH_SUPPORT
2f103494
BK
128 GLIBCPP_CHECK_COMPLEX_MATH_SUPPORT
129 GLIBCPP_CHECK_COMPLEX_MATH_COMPILER_SUPPORT
b2dad0e3 130 GLIBCPP_CHECK_WCHAR_T_SUPPORT
e7140677
BK
131 GLIBCPP_CHECK_CTYPE_SUPPORT
132 GLIBCPP_CHECK_STDLIB_SUPPORT
b2dad0e3
BK
133
134 AC_FUNC_MMAP
135fi
136
137AM_CONDITIONAL(CANADIAN, test "$CANADIAN" = yes)
138AM_CONDITIONAL(NULL_TARGET, test "$NULL_TARGET" = yes)
139AM_CONDITIONAL(NATIVE, test "$NATIVE" = yes || test "$NULL_TARGET" = yes)
140AM_CONDITIONAL(USE_LIBDIR, test -z "$with_cross_host")
c4d3f801 141
5e53dba6 142AC_CACHE_SAVE
b2dad0e3
BK
143AC_LC_MESSAGES
144
b2dad0e3
BK
145if test "${multilib}" = "yes"; then
146 multilib_arg="--enable-multilib"
147else
148 multilib_arg=
149fi
150
151
152# Generate the various Makefiles, include files, and scripts.
153
1fd2f510
BK
154# This helps subvert libstdcxx_interface, as calculated by devo/config.if
155# Needed so that g++ can find the correct include subdir automatically.
156INTERFACE=v3
157
158# Check for the interface version number for specifying where header
159# files are installed, if a version number is provided.
160AC_MSG_CHECKING([for interface version number])
161libstdcxx_interface=$INTERFACE
162AC_MSG_RESULT($libstdcxx_interface)
163AC_SUBST(libstdcxx_interface)
164
165# Process the option --with-gxx-include-dir=<path to include-files directory>
166AC_MSG_CHECKING([for --with-gxx-include-dir])
167AC_ARG_WITH(gxx-include-dir,
168[ --with-gxx-include-dir the installation directory for include files],
169[case "${withval}" in
170 yes)
171 AC_MSG_ERROR(Missing directory for --with-gxx-include-dir)
172 gxx_include_dir=no
173 ;;
174 no)
175 gxx_include_dir=no
176 ;;
177 *)
178 gxx_include_dir=${withval}
179 ;;
180esac], [gxx_include_dir=no])
181AC_MSG_RESULT($gxx_include_dir)
182AC_SUBST(gxx_include_dir)
183AM_CONDITIONAL(GXX_INCLUDE_DIR, test x${gxx_include_dir} != xno)
184
185# Process the option "--enable-version-specific-runtime-libs"
186AC_MSG_CHECKING([for --enable-version-specific-runtime-libs])
187AC_ARG_ENABLE(version-specific-runtime-libs,
188[ --enable-version-specific-runtime-libs Specify that runtime libraries should be installed in a compiler-specific directory ],
189[ version_specific_libs=yes
190# Need the gcc compiler version to know where to install libraries
191# and header files if --enable-version-specific-runtime-libs option
192# is selected.
193changequote(,)dnl
194gcc_tmp=`grep version_string ${srcdir}/../gcc/version.c | awk '{print $6}'`
195gcc_num=`echo ${gcc_tmp} | sed 's/\"//g'`
196#gcc_date=`grep version_string ${srcdir}/../gcc/version.c | awk '{print $7}'`
197#gcc_version=$gcc_num-$gcc_date
198gcc_version=$gcc_num
199changequote([,])dnl
200AC_SUBST(gcc_version)
201],version_specific_libs=no)
202AC_MSG_RESULT($version_specific_libs)
203if test x${version_specific_libs} = xyes; then
204 AM_CONDITIONAL(VERSION_SPECIFIC_LIBS, test x${version_specific_libs} = xyes)
205 AC_MSG_WARN(version specific directory is: $gcc_version)
206fi
207
208
209
e466dc8a
BK
210# Export all the include and flag information to makefiles.
211GLIBCPP_EXPORT_INCLUDES
212GLIBCPP_EXPORT_FLAGS
213
5e53dba6
BK
214# This should be done by mkincludedir, but hack around it now.
215blddir=`pwd`
216echo "checking for $blddir/include"
217
218if test ! -d "$blddir/include"; then
219 mkdir "$blddir/include"
220fi
221
b2dad0e3
BK
222# NB: Multilibs need MULTISUBDIR defined correctly in src/Makefile.am
223# so that multilib installs will end up installed in the correct
224# place. To work around this not being passed down from config-ml.in
225# -> top_srcdir/Makefile.am -> top_srcdir/src/Makefile.am, manually
226# append it here.
b21218ce 227AC_OUTPUT(tests_flags mkcheck Makefile src/Makefile libmath/Makefile libio/Makefile libsupc++/Makefile,
b2dad0e3
BK
228[if test -n "$CONFIG_FILES"; then
229 ac_file=Makefile . ${glibcpp_basedir}/../config-ml.in
230 grep '^MULTISUBDIR =' Makefile >> src/Makefile
be5aeb60 231fi
b21218ce 232chmod +x tests_flags
be5aeb60
MM
233chmod +x mkcheck
234],
b2dad0e3
BK
235srcdir=${srcdir}
236host=${host}
237target=${target}
238with_multisubdir=${with_multisubdir}
239ac_configure_args="${multilib_arg} ${ac_configure_args}"
240CONFIG_SHELL=${CONFIG_SHELL-/bin/sh}
241glibcpp_basedir=${glibcpp_basedir}
242CC="${CC}"
243CXX="${CXX}"
244)
245
246
b2dad0e3
BK
247# Generate bits/c++config.h
248# NB: This must be the first generated file as others include it. . .
35a63b94 249$srcdir/mkc++config $blddir $srcdir
b2dad0e3
BK
250
251# Generate bits/std_limits.h and src/limitsMEMBERS.cc
1fd2f510 252if test ! -f stamp-limits; then
35a63b94 253 $srcdir/mknumeric_limits $blddir $srcdir $xcompiling
1fd2f510
BK
254 touch stamp-limits
255fi
29bd52c8 256
a9117427 257
29bd52c8
PE
258# Sanity checking & User-visible messages.
259# Checks down here, otherwise they get scrolled off before
260# the user will notice.
29bd52c8 261
5780a46b
BK
262# Trying to get more people to read documentation. Possibly remove
263# check and warn all the time. There is no "informational" AC_MSG_
264# macro, so these are going to be printed even when --quiet/--silent
265# is given.
99b51359
BK
266if test ! -f stamp-sanity-warned; then
267 touch stamp-sanity-warned
5780a46b
BK
268 echo ""
269 echo "Please make certain that you read the installation information here:"
29bd52c8 270 echo " faster => ${srcdir}/docs/install.html"
5780a46b
BK
271 echo " slower => <URL:http://sources.redhat.com/libstdc++/install.html>"
272 echo ""
273 echo "and the configuration information here:"
29bd52c8 274 echo " faster => ${srcdir}/docs/configopts.html"
5780a46b
BK
275 echo " slower => <URL:http://sources.redhat.com/libstdc++/configopts.html>"
276 echo ""
421173e6 277 echo "before proceeding with ${_cv_gnu_make_command}."
5780a46b 278 echo ""
29bd52c8 279fi