1 dnl Process this file with autoconf to produce a configure script.
10 BFD_VERSION=`sed -n -e 's/^.._INIT_AUTOMAKE.*,[ ]*\([^ ]*\)[ ]*).*/\1/p' < ${srcdir}/../bfd/configure.in`
12 AM_INIT_AUTOMAKE(binutils, ${BFD_VERSION})
16 AC_ARG_ENABLE(targets,
17 [ --enable-targets alternative target configurations],
18 [case "${enableval}" in
19 yes | "") AC_ERROR(enable-targets option must specify target names or 'all')
21 no) enable_targets= ;;
22 *) enable_targets=$enableval ;;
24 AC_ARG_ENABLE(commonbfdlib,
25 [ --enable-commonbfdlib build shared BFD/opcodes/libiberty library],
26 [case "${enableval}" in
27 yes) commonbfdlib=true ;;
28 no) commonbfdlib=false ;;
29 *) AC_MSG_ERROR([bad value ${enableval} for BFD commonbfdlib option]) ;;
32 dnl FIXME: The following is bfd/warning.m4 contents expanded
33 dnl When converting to current autotools, please replace with
34 dnl AM_BINUTILS_WARNINGS
35 WARN_CFLAGS="-W -Wall -Wstrict-prototypes -Wmissing-prototypes"
38 [ --enable-werror treat compile warnings as errors],
39 [case "${enableval}" in
40 yes | y) ERROR_ON_WARNING="yes" ;;
41 no | n) ERROR_ON_WARNING="no" ;;
42 *) AC_MSG_ERROR(bad value ${enableval} for --enable-werror) ;;
45 # Enable -Werror by default when using gcc
46 if test "${GCC}" = yes -a -z "${ERROR_ON_WARNING}" ; then
51 if test "${ERROR_ON_WARNING}" = yes ; then
52 WARN_CFLAGS="$WARN_CFLAGS -Werror"
53 NO_WERROR="-Wno-error"
56 AC_ARG_ENABLE(build-warnings,
57 [ --enable-build-warnings Enable build-time compiler warnings],
58 [case "${enableval}" in
60 no) WARN_CFLAGS="-w";;
61 ,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
62 WARN_CFLAGS="${WARN_CFLAGS} ${t}";;
63 *,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
64 WARN_CFLAGS="${t} ${WARN_CFLAGS}";;
65 *) WARN_CFLAGS=`echo "${enableval}" | sed -e "s/,/ /g"`;;
68 if test x"$silent" != x"yes" && test x"$WARN_CFLAGS" != x""; then
69 echo "Setting warning flags = $WARN_CFLAGS" 6>&1
75 AM_CONFIG_HEADER(config.h:config.in)
77 if test -z "$target" ; then
78 AC_MSG_ERROR(Unrecognized target system type; please check config.sub.)
80 if test -z "$host" ; then
81 AC_MSG_ERROR(Unrecognized host system type; please check config.sub.)
89 ALL_LINGUAS="fr tr ja es sv da zh_CN ru ro rw"
94 if test -n "$EXEEXT"; then
95 AC_DEFINE(HAVE_EXECUTABLE_SUFFIX, 1,
96 [Does the platform use an executable suffix?])
98 AC_DEFINE_UNQUOTED(EXECUTABLE_SUFFIX, "${EXEEXT}",
99 [Suffix used for executables, if any.])
101 # host-specific stuff:
105 . ${srcdir}/../bfd/configure.host
115 DEMANGLER_NAME=c++filt
117 *-*-go32* | *-*-msdos*)
118 DEMANGLER_NAME=cxxfilt
120 AC_SUBST(DEMANGLER_NAME)
122 AC_CHECK_HEADERS(string.h strings.h stdlib.h unistd.h fcntl.h sys/file.h)
125 AC_CHECK_FUNCS(sbrk utimes setmode getc_unlocked strcoll)
127 # Check whether fopen64 is available and whether _LARGEFILE64_SOURCE
128 # needs to be defined for it
129 AC_MSG_CHECKING([for fopen64])
130 AC_CACHE_VAL(bu_cv_have_fopen64,
131 [AC_TRY_LINK([#include <stdio.h>], [FILE *f = fopen64 ("/tmp/foo","r");],
132 bu_cv_have_fopen64=yes,
133 [saved_CPPFLAGS=$CPPFLAGS
134 CPPFLAGS="$CPPFLAGS -D_LARGEFILE64_SOURCE"
135 AC_TRY_LINK([#include <stdio.h>], [FILE *f = fopen64 ("/tmp/foo","r");],
136 bu_cv_have_fopen64="need -D_LARGEFILE64_SOURCE",
137 bu_cv_have_fopen64=no)
138 CPPFLAGS=$saved_CPPFLAGS])])
139 AC_MSG_RESULT($bu_cv_have_fopen64)
140 if test "$bu_cv_have_fopen64" != no; then
141 AC_DEFINE([HAVE_FOPEN64], 1,
142 [Is fopen64 available?])
144 AC_MSG_CHECKING([for stat64])
145 AC_CACHE_VAL(bu_cv_have_stat64,
146 [AC_TRY_LINK([#include <sys/stat.h>], [struct stat64 st; stat64 ("/tmp/foo", &st);],
147 bu_cv_have_stat64=yes,
148 [saved_CPPFLAGS=$CPPFLAGS
149 CPPFLAGS="$CPPFLAGS -D_LARGEFILE64_SOURCE"
150 AC_TRY_LINK([#include <sys/stat.h>], [struct stat64 st; stat64 ("/tmp/foo", &st);],
151 bu_cv_have_stat64="need -D_LARGEFILE64_SOURCE",
152 bu_cv_have_stat64=no)
153 CPPFLAGS=$saved_CPPFLAGS])])
154 AC_MSG_RESULT($bu_cv_have_stat64)
155 if test "$bu_cv_have_stat64" != no; then
156 AC_DEFINE([HAVE_STAT64], 1,
157 [Is stat64 available?])
159 if test "$bu_cv_have_fopen64" = "need -D_LARGEFILE64_SOURCE" \
160 || test "$bu_cv_have_stat64" = "need -D_LARGEFILE64_SOURCE"; then
161 AC_DEFINE([_LARGEFILE64_SOURCE], 1,
163 CPPFLAGS="$CPPFLAGS -D_LARGEFILE64_SOURCE"
166 # Some systems have frexp only in -lm, not in -lc.
167 AC_SEARCH_LIBS(frexp, m)
169 AC_MSG_CHECKING(for time_t in time.h)
170 AC_CACHE_VAL(bu_cv_decl_time_t_time_h,
171 [AC_TRY_COMPILE([#include <time.h>], [time_t i;],
172 bu_cv_decl_time_t_time_h=yes, bu_cv_decl_time_t_time_h=no)])
173 AC_MSG_RESULT($bu_cv_decl_time_t_time_h)
174 if test $bu_cv_decl_time_t_time_h = yes; then
175 AC_DEFINE([HAVE_TIME_T_IN_TIME_H], 1,
176 [Is the type time_t defined in <time.h>?])
179 AC_MSG_CHECKING(for time_t in sys/types.h)
180 AC_CACHE_VAL(bu_cv_decl_time_t_types_h,
181 [AC_TRY_COMPILE([#include <sys/types.h>], [time_t i;],
182 bu_cv_decl_time_t_types_h=yes, bu_cv_decl_time_t_types_h=no)])
183 AC_MSG_RESULT($bu_cv_decl_time_t_types_h)
184 if test $bu_cv_decl_time_t_types_h = yes; then
185 AC_DEFINE([HAVE_TIME_T_IN_TYPES_H], 1,
186 [Is the type time_t defined in <sys/types.h>?])
189 AC_MSG_CHECKING(for a known getopt prototype in unistd.h)
190 AC_CACHE_VAL(bu_cv_decl_getopt_unistd_h,
191 [AC_TRY_COMPILE([#include <unistd.h>], [extern int getopt (int, char *const*, const char *);],
192 bu_cv_decl_getopt_unistd_h=yes, bu_cv_decl_getopt_unistd_h=no)])
193 AC_MSG_RESULT($bu_cv_decl_getopt_unistd_h)
194 if test $bu_cv_decl_getopt_unistd_h = yes; then
195 AC_DEFINE([HAVE_DECL_GETOPT], 1,
196 [Is the prototype for getopt in <unistd.h> in the expected format?])
199 # Under Next 3.2 <utime.h> apparently does not define struct utimbuf
201 AC_MSG_CHECKING([for utime.h])
202 AC_CACHE_VAL(bu_cv_header_utime_h,
203 [AC_TRY_COMPILE([#include <sys/types.h>
209 bu_cv_header_utime_h=yes, bu_cv_header_utime_h=no)])
210 AC_MSG_RESULT($bu_cv_header_utime_h)
211 if test $bu_cv_header_utime_h = yes; then
212 AC_DEFINE(HAVE_GOOD_UTIME_H, 1, [Does <utime.h> define struct utimbuf?])
215 BFD_NEED_DECLARATION(fprintf)
216 BFD_NEED_DECLARATION(strstr)
217 BFD_NEED_DECLARATION(sbrk)
218 BFD_NEED_DECLARATION(getenv)
219 BFD_NEED_DECLARATION(environ)
223 # target-specific stuff:
225 # Canonicalize the secondary target names.
226 if test -n "$enable_targets"; then
227 for targ in `echo $enable_targets | sed 's/,/ /g'`
229 result=`$ac_config_sub $targ 2>/dev/null`
230 if test -n "$result"; then
231 canon_targets="$canon_targets $result"
233 # Allow targets that config.sub doesn't recognize, like "all".
234 canon_targets="$canon_targets $targ"
250 for targ in $target $canon_targets
252 if test "x$targ" = "xall"; then
254 BUILD_NLMCONV='$(NLMCONV_PROG)$(EXEEXT)'
255 BUILD_SRCONV='$(SRCONV_PROG)'
256 NLMCONV_DEFS="-DNLMCONV_I386 -DNLMCONV_ALPHA -DNLMCONV_POWERPC -DNLMCONV_SPARC"
260 i[3-7]86*-*-netware*)
262 BUILD_NLMCONV='$(NLMCONV_PROG)$(EXEEXT)'
263 NLMCONV_DEFS="$NLMCONV_DEFS -DNLMCONV_I386"
266 BUILD_NLMCONV='$(NLMCONV_PROG)$(EXEEXT)'
267 NLMCONV_DEFS="$NLMCONV_DEFS -DNLMCONV_ALPHA"
270 BUILD_NLMCONV='$(NLMCONV_PROG)$(EXEEXT)'
271 NLMCONV_DEFS="$NLMCONV_DEFS -DNLMCONV_POWERPC"
274 BUILD_NLMCONV='$(NLMCONV_PROG)$(EXEEXT)'
275 NLMCONV_DEFS="$NLMCONV_DEFS -DNLMCONV_SPARC"
279 *-*-hms*) BUILD_SRCONV='$(SRCONV_PROG)' ;;
283 BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
284 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_ARM_EPOC -DDLLTOOL_ARM"
285 BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
287 arm-*-pe* | arm-*-wince)
288 BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
289 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_ARM"
290 BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
293 BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
294 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_ARM"
295 BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
297 arm*-* | xscale-* | strongarm-* | d10v-*)
298 OBJDUMP_DEFS="-DDISASSEMBLER_NEEDS_RELOCS"
301 i[3-7]86-*-pe* | i[3-7]86-*-cygwin* | i[3-7]86-*-mingw32** | i[3-7]86-*-netbsdpe*)
303 BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
304 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_I386"
305 BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
306 BUILD_DLLWRAP='$(DLLWRAP_PROG)$(EXEEXT)'
311 BUILD_DLLTOOL='$(DLLTOOL_PROG)'
312 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_I386"
319 OBJDUMP_DEFS="-DAIX_WEAK_SUPPORT"
321 powerpc*-*-pe* | powerpc*-*-cygwin*)
322 BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
323 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_PPC"
324 BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
327 BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
328 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_SH"
329 BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
332 BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
333 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_MIPS"
334 BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
337 BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
338 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_MCORE"
339 BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
342 BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
343 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_MCORE_ELF"
349 if test "${with_windres+set}" = set; then
350 BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
353 AC_SUBST(NLMCONV_DEFS)
354 AC_SUBST(BUILD_NLMCONV)
355 AC_SUBST(BUILD_SRCONV)
356 AC_SUBST(BUILD_DLLTOOL)
357 AC_SUBST(DLLTOOL_DEFS)
358 AC_SUBST(BUILD_WINDRES)
359 AC_SUBST(BUILD_DLLWRAP)
361 AC_SUBST(OBJDUMP_DEFS)
363 AC_DEFINE_UNQUOTED(TARGET, "${target}", [Configured target name.])
366 . $srcdir/../bfd/config.bfd
367 if test "x$targ_underscore" = "xyes"; then
372 AC_DEFINE_UNQUOTED(TARGET_PREPENDS_UNDERSCORE, $UNDERSCORE,
373 [Define to 1 if user symbol names have a leading underscore, 0 if not.])
376 for targ_alias in `echo $target_alias $enable_targets | sed 's/,/ /g'`
378 # Canonicalize the secondary target names.
379 result=`$ac_config_sub $targ_alias 2>/dev/null`
380 if test -n "$result"; then
386 . ${srcdir}/configure.tgt
389 EMULATION_VECTOR=$targ_emul_vector
393 AC_SUBST(EMULATION_VECTOR)
395 AC_OUTPUT(Makefile doc/Makefile po/Makefile.in:po/Make-in,
397 case "x$CONFIG_FILES" in
398 *) sed -e '/POTFILES =/r po/POTFILES' po/Makefile.in > po/Makefile ;;