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 build_warnings="-W -Wall -Wstrict-prototypes -Wmissing-prototypes"
33 AC_ARG_ENABLE(build-warnings,
34 [ --enable-build-warnings Enable build-time compiler warnings if gcc is used],
35 [case "${enableval}" in
37 no) build_warnings="-w";;
38 ,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
39 build_warnings="${build_warnings} ${t}";;
40 *,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
41 build_warnings="${t} ${build_warnings}";;
42 *) build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
44 if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then
45 echo "Setting warning flags = $build_warnings" 6>&1
48 if test "x${build_warnings}" != x -a "x$GCC" = xyes ; then
49 WARN_CFLAGS="${build_warnings}"
53 AM_CONFIG_HEADER(config.h:config.in)
55 if test -z "$target" ; then
56 AC_MSG_ERROR(Unrecognized target system type; please check config.sub.)
58 if test -z "$host" ; then
59 AC_MSG_ERROR(Unrecognized host system type; please check config.sub.)
67 ALL_LINGUAS="fr tr ja es sv da zh_CN"
72 if test -n "$EXEEXT"; then
73 AC_DEFINE(HAVE_EXECUTABLE_SUFFIX, 1,
74 [Does the platform use an executable suffix?])
76 AC_DEFINE_UNQUOTED(EXECUTABLE_SUFFIX, "${EXEEXT}",
77 [Suffix used for executables, if any.])
79 # host-specific stuff:
83 . ${srcdir}/../bfd/configure.host
93 DEMANGLER_NAME=c++filt
95 *-*-go32* | *-*-msdos*)
96 DEMANGLER_NAME=cxxfilt
98 AC_SUBST(DEMANGLER_NAME)
100 AC_CHECK_HEADERS(string.h strings.h stdlib.h unistd.h fcntl.h sys/file.h)
103 AC_CHECK_FUNCS(sbrk utimes setmode getc_unlocked strcoll)
105 # Check whether fopen64 is available and whether _LARGEFILE64_SOURCE
106 # needs to be defined for it
107 AC_MSG_CHECKING([for fopen64])
108 AC_CACHE_VAL(bu_cv_have_fopen64,
109 [AC_TRY_LINK([#include <stdio.h>], [FILE *f = fopen64 ("/tmp/foo","r");],
110 bu_cv_have_fopen64=yes,
111 [saved_CPPFLAGS=$CPPFLAGS
112 CPPFLAGS="$CPPFLAGS -D_LARGEFILE64_SOURCE"
113 AC_TRY_LINK([#include <stdio.h>], [FILE *f = fopen64 ("/tmp/foo","r");],
114 bu_cv_have_fopen64="need -D_LARGEFILE64_SOURCE",
115 bu_cv_have_fopen64=no)
116 CPPFLAGS=$saved_CPPFLAGS])])
117 AC_MSG_RESULT($bu_cv_have_fopen64)
118 if test "$bu_cv_have_fopen64" != no; then
119 AC_DEFINE([HAVE_FOPEN64], 1,
120 [Is fopen64 available?])
121 if test "$bu_cv_have_fopen64" = "need -D_LARGEFILE64_SOURCE"; then
122 AC_DEFINE([_LARGEFILE64_SOURCE], 1,
127 # Some systems have frexp only in -lm, not in -lc.
128 AC_SEARCH_LIBS(frexp, m)
130 AC_MSG_CHECKING(for time_t in time.h)
131 AC_CACHE_VAL(bu_cv_decl_time_t_time_h,
132 [AC_TRY_COMPILE([#include <time.h>], [time_t i;],
133 bu_cv_decl_time_t_time_h=yes, bu_cv_decl_time_t_time_h=no)])
134 AC_MSG_RESULT($bu_cv_decl_time_t_time_h)
135 if test $bu_cv_decl_time_t_time_h = yes; then
136 AC_DEFINE([HAVE_TIME_T_IN_TIME_H], 1,
137 [Is the type time_t defined in <time.h>?])
140 AC_MSG_CHECKING(for time_t in sys/types.h)
141 AC_CACHE_VAL(bu_cv_decl_time_t_types_h,
142 [AC_TRY_COMPILE([#include <sys/types.h>], [time_t i;],
143 bu_cv_decl_time_t_types_h=yes, bu_cv_decl_time_t_types_h=no)])
144 AC_MSG_RESULT($bu_cv_decl_time_t_types_h)
145 if test $bu_cv_decl_time_t_types_h = yes; then
146 AC_DEFINE([HAVE_TIME_T_IN_TYPES_H], 1,
147 [Is the type time_t defined in <sys/types.h>?])
150 # Under Next 3.2 <utime.h> apparently does not define struct utimbuf
152 AC_MSG_CHECKING([for utime.h])
153 AC_CACHE_VAL(bu_cv_header_utime_h,
154 [AC_TRY_COMPILE([#include <sys/types.h>
160 bu_cv_header_utime_h=yes, bu_cv_header_utime_h=no)])
161 AC_MSG_RESULT($bu_cv_header_utime_h)
162 if test $bu_cv_header_utime_h = yes; then
163 AC_DEFINE(HAVE_GOOD_UTIME_H, 1, [Does <utime.h> define struct utimbuf?])
166 BFD_NEED_DECLARATION(fprintf)
167 BFD_NEED_DECLARATION(strstr)
168 BFD_NEED_DECLARATION(sbrk)
169 BFD_NEED_DECLARATION(getenv)
170 BFD_NEED_DECLARATION(environ)
174 # target-specific stuff:
176 # Canonicalize the secondary target names.
177 if test -n "$enable_targets"; then
178 for targ in `echo $enable_targets | sed 's/,/ /g'`
180 result=`$ac_config_sub $targ 2>/dev/null`
181 if test -n "$result"; then
182 canon_targets="$canon_targets $result"
184 # Allow targets that config.sub doesn't recognize, like "all".
185 canon_targets="$canon_targets $targ"
201 for targ in $target $canon_targets
203 if test "x$targ" = "xall"; then
205 BUILD_NLMCONV='$(NLMCONV_PROG)$(EXEEXT)'
206 BUILD_SRCONV='$(SRCONV_PROG)'
207 NLMCONV_DEFS="-DNLMCONV_I386 -DNLMCONV_ALPHA -DNLMCONV_POWERPC -DNLMCONV_SPARC"
211 i[3-7]86*-*-netware*)
213 BUILD_NLMCONV='$(NLMCONV_PROG)$(EXEEXT)'
214 NLMCONV_DEFS="$NLMCONV_DEFS -DNLMCONV_I386"
217 BUILD_NLMCONV='$(NLMCONV_PROG)$(EXEEXT)'
218 NLMCONV_DEFS="$NLMCONV_DEFS -DNLMCONV_ALPHA"
221 BUILD_NLMCONV='$(NLMCONV_PROG)$(EXEEXT)'
222 NLMCONV_DEFS="$NLMCONV_DEFS -DNLMCONV_POWERPC"
225 BUILD_NLMCONV='$(NLMCONV_PROG)$(EXEEXT)'
226 NLMCONV_DEFS="$NLMCONV_DEFS -DNLMCONV_SPARC"
230 *-*-hms*) BUILD_SRCONV='$(SRCONV_PROG)' ;;
234 BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
235 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_ARM_EPOC -DDLLTOOL_ARM"
236 BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
238 arm-*-pe* | arm-*-wince)
239 BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
240 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_ARM"
241 BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
244 BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
245 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_ARM"
246 BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
248 arm*-* | xscale-* | strongarm-* | d10v-*)
249 OBJDUMP_DEFS="-DDISASSEMBLER_NEEDS_RELOCS"
252 i[3-7]86-*-pe* | i[3-7]86-*-cygwin* | i[3-7]86-*-mingw32** | i[3-7]86-*-netbsdpe*)
254 BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
255 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_I386"
256 BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
257 BUILD_DLLWRAP='$(DLLWRAP_PROG)$(EXEEXT)'
262 BUILD_DLLTOOL='$(DLLTOOL_PROG)'
263 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_I386"
265 powerpc*-*-pe* | powerpc*-*-cygwin*)
266 BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
267 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_PPC"
268 BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
271 BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
272 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_SH"
273 BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
276 BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
277 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_MIPS"
278 BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
281 BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
282 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_MCORE"
283 BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
286 BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
287 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_MCORE_ELF"
290 OBJDUMP_DEFS="$OBJDUMP_DEFS -DSKIP_ZEROES=32"
293 OBJDUMP_DEFS="$OBJDUMP_DEFS -DSKIP_ZEROES=16"
299 if test "${with_windres+set}" = set; then
300 BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
303 AC_SUBST(NLMCONV_DEFS)
304 AC_SUBST(BUILD_NLMCONV)
305 AC_SUBST(BUILD_SRCONV)
306 AC_SUBST(BUILD_DLLTOOL)
307 AC_SUBST(DLLTOOL_DEFS)
308 AC_SUBST(BUILD_WINDRES)
309 AC_SUBST(BUILD_DLLWRAP)
311 AC_SUBST(OBJDUMP_DEFS)
313 AC_DEFINE_UNQUOTED(TARGET, "${target}", [Configured target name.])
316 . $srcdir/../bfd/config.bfd
317 if test "x$targ_underscore" = "xyes"; then
322 AC_DEFINE_UNQUOTED(TARGET_PREPENDS_UNDERSCORE, $UNDERSCORE,
323 [Define to 1 if user symbol names have a leading underscore, 0 if not.])
326 for targ_alias in `echo $target_alias $enable_targets | sed 's/,/ /g'`
328 # Canonicalize the secondary target names.
329 result=`$ac_config_sub $targ_alias 2>/dev/null`
330 if test -n "$result"; then
336 . ${srcdir}/configure.tgt
339 EMULATION_VECTOR=$targ_emul_vector
343 AC_SUBST(EMULATION_VECTOR)
345 AC_OUTPUT(Makefile doc/Makefile po/Makefile.in:po/Make-in,
347 case "x$CONFIG_FILES" in
348 *) sed -e '/POTFILES =/r po/POTFILES' po/Makefile.in > po/Makefile ;;