Add x86_64-mingw64 target
[deliverable/binutils-gdb.git] / binutils / configure.in
1 dnl Process this file with autoconf to produce a configure script.
2 dnl
3 AC_PREREQ(2.57)
4 AC_INIT(ar.c)
5
6 AC_CANONICAL_SYSTEM
7 AC_ISC_POSIX
8
9 changequote(,)dnl
10 BFD_VERSION=`sed -n -e 's/^.._INIT_AUTOMAKE.*,[ ]*\([^ ]*\)[ ]*).*/\1/p' < ${srcdir}/../bfd/configure.in`
11 changequote([,])dnl
12 AM_INIT_AUTOMAKE(binutils, ${BFD_VERSION})
13
14 AM_PROG_LIBTOOL
15
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')
20 ;;
21 no) enable_targets= ;;
22 *) enable_targets=$enableval ;;
23 esac])dnl
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]) ;;
30 esac])dnl
31
32 AM_BINUTILS_WARNINGS
33
34 AM_CONFIG_HEADER(config.h:config.in)
35
36 if test -z "$target" ; then
37 AC_MSG_ERROR(Unrecognized target system type; please check config.sub.)
38 fi
39 if test -z "$host" ; then
40 AC_MSG_ERROR(Unrecognized host system type; please check config.sub.)
41 fi
42
43 AC_PROG_CC
44 AC_GNU_SOURCE
45
46 AC_PROG_YACC
47 AM_PROG_LEX
48
49 ALL_LINGUAS="fr tr ja es sv da zh_CN ru ro rw zh_TW fi vi"
50 ZW_GNU_GETTEXT_SISTER_DIR
51 AM_PO_SUBDIRS
52
53 AM_MAINTAINER_MODE
54 AC_EXEEXT
55 if test -n "$EXEEXT"; then
56 AC_DEFINE(HAVE_EXECUTABLE_SUFFIX, 1,
57 [Does the platform use an executable suffix?])
58 fi
59 AC_DEFINE_UNQUOTED(EXECUTABLE_SUFFIX, "${EXEEXT}",
60 [Suffix used for executables, if any.])
61
62 # host-specific stuff:
63
64 HDEFINES=
65
66 . ${srcdir}/../bfd/configure.host
67
68 AC_SUBST(HDEFINES)
69 AR=${AR-ar}
70 AC_SUBST(AR)
71 AC_PROG_RANLIB
72 AC_PROG_INSTALL
73
74 BFD_CC_FOR_BUILD
75
76 DEMANGLER_NAME=c++filt
77 case "${host}" in
78 *-*-go32* | *-*-msdos*)
79 DEMANGLER_NAME=cxxfilt
80 esac
81 AC_SUBST(DEMANGLER_NAME)
82
83 AC_CHECK_HEADERS(string.h strings.h stdlib.h unistd.h fcntl.h sys/file.h)
84 AC_HEADER_SYS_WAIT
85 AC_FUNC_ALLOCA
86 AC_CHECK_FUNCS(sbrk utimes setmode getc_unlocked strcoll)
87
88 # Check whether fopen64 is available and whether _LARGEFILE64_SOURCE
89 # needs to be defined for it
90 AC_MSG_CHECKING([for fopen64])
91 AC_CACHE_VAL(bu_cv_have_fopen64,
92 [AC_TRY_LINK([#include <stdio.h>], [FILE *f = fopen64 ("/tmp/foo","r");],
93 bu_cv_have_fopen64=yes,
94 [saved_CPPFLAGS=$CPPFLAGS
95 CPPFLAGS="$CPPFLAGS -D_LARGEFILE64_SOURCE"
96 AC_TRY_LINK([#include <stdio.h>], [FILE *f = fopen64 ("/tmp/foo","r");],
97 bu_cv_have_fopen64="need -D_LARGEFILE64_SOURCE",
98 bu_cv_have_fopen64=no)
99 CPPFLAGS=$saved_CPPFLAGS])])
100 AC_MSG_RESULT($bu_cv_have_fopen64)
101 if test "$bu_cv_have_fopen64" != no; then
102 AC_DEFINE([HAVE_FOPEN64], 1,
103 [Is fopen64 available?])
104 fi
105 AC_MSG_CHECKING([for stat64])
106 AC_CACHE_VAL(bu_cv_have_stat64,
107 [AC_TRY_LINK([#include <sys/stat.h>], [struct stat64 st; stat64 ("/tmp/foo", &st);],
108 bu_cv_have_stat64=yes,
109 [saved_CPPFLAGS=$CPPFLAGS
110 CPPFLAGS="$CPPFLAGS -D_LARGEFILE64_SOURCE"
111 AC_TRY_LINK([#include <sys/stat.h>], [struct stat64 st; stat64 ("/tmp/foo", &st);],
112 bu_cv_have_stat64="need -D_LARGEFILE64_SOURCE",
113 bu_cv_have_stat64=no)
114 CPPFLAGS=$saved_CPPFLAGS])])
115 AC_MSG_RESULT($bu_cv_have_stat64)
116 if test "$bu_cv_have_stat64" != no; then
117 AC_DEFINE([HAVE_STAT64], 1,
118 [Is stat64 available?])
119 fi
120 if test "$bu_cv_have_fopen64" = "need -D_LARGEFILE64_SOURCE" \
121 || test "$bu_cv_have_stat64" = "need -D_LARGEFILE64_SOURCE"; then
122 AC_DEFINE([_LARGEFILE64_SOURCE], 1,
123 [Enable LFS])
124 CPPFLAGS="$CPPFLAGS -D_LARGEFILE64_SOURCE"
125 fi
126
127 # Some systems have frexp only in -lm, not in -lc.
128 AC_SEARCH_LIBS(frexp, m)
129
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>?])
138 fi
139
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>?])
148 fi
149
150 AC_MSG_CHECKING(for a known getopt prototype in unistd.h)
151 AC_CACHE_VAL(bu_cv_decl_getopt_unistd_h,
152 [AC_TRY_COMPILE([#include <unistd.h>], [extern int getopt (int, char *const*, const char *);],
153 bu_cv_decl_getopt_unistd_h=yes, bu_cv_decl_getopt_unistd_h=no)])
154 AC_MSG_RESULT($bu_cv_decl_getopt_unistd_h)
155 if test $bu_cv_decl_getopt_unistd_h = yes; then
156 AC_DEFINE([HAVE_DECL_GETOPT], 1,
157 [Is the prototype for getopt in <unistd.h> in the expected format?])
158 fi
159
160 # Under Next 3.2 <utime.h> apparently does not define struct utimbuf
161 # by default.
162 AC_MSG_CHECKING([for utime.h])
163 AC_CACHE_VAL(bu_cv_header_utime_h,
164 [AC_TRY_COMPILE([#include <sys/types.h>
165 #ifdef HAVE_TIME_H
166 #include <time.h>
167 #endif
168 #include <utime.h>],
169 [struct utimbuf s;],
170 bu_cv_header_utime_h=yes, bu_cv_header_utime_h=no)])
171 AC_MSG_RESULT($bu_cv_header_utime_h)
172 if test $bu_cv_header_utime_h = yes; then
173 AC_DEFINE(HAVE_GOOD_UTIME_H, 1, [Does <utime.h> define struct utimbuf?])
174 fi
175
176 AC_CHECK_DECLS([fprintf, stpcpy, strstr, sbrk, getenv, environ, getc_unlocked,
177 snprintf, vsnprintf])
178
179 BFD_BINARY_FOPEN
180
181 # target-specific stuff:
182
183 # Canonicalize the secondary target names.
184 if test -n "$enable_targets"; then
185 for targ in `echo $enable_targets | sed 's/,/ /g'`
186 do
187 result=`$ac_config_sub $targ 2>/dev/null`
188 if test -n "$result"; then
189 canon_targets="$canon_targets $result"
190 else
191 # Allow targets that config.sub doesn't recognize, like "all".
192 canon_targets="$canon_targets $targ"
193 fi
194 done
195 fi
196
197 all_targets=false
198 BUILD_NLMCONV=
199 NLMCONV_DEFS=
200 BUILD_SRCONV=
201 BUILD_DLLTOOL=
202 DLLTOOL_DEFS=
203 BUILD_WINDRES=
204 BUILD_DLLWRAP=
205 BUILD_MISC=
206 OBJDUMP_DEFS=
207
208 for targ in $target $canon_targets
209 do
210 if test "x$targ" = "xall"; then
211 all_targets=true
212 BUILD_NLMCONV='$(NLMCONV_PROG)$(EXEEXT)'
213 BUILD_SRCONV='$(SRCONV_PROG)'
214 NLMCONV_DEFS="-DNLMCONV_I386 -DNLMCONV_ALPHA -DNLMCONV_POWERPC -DNLMCONV_SPARC"
215 else
216 case $targ in
217 changequote(,)dnl
218 i[3-7]86*-*-netware*)
219 changequote([,])dnl
220 BUILD_NLMCONV='$(NLMCONV_PROG)$(EXEEXT)'
221 NLMCONV_DEFS="$NLMCONV_DEFS -DNLMCONV_I386"
222 ;;
223 alpha*-*-netware*)
224 BUILD_NLMCONV='$(NLMCONV_PROG)$(EXEEXT)'
225 NLMCONV_DEFS="$NLMCONV_DEFS -DNLMCONV_ALPHA"
226 ;;
227 powerpc*-*-netware*)
228 BUILD_NLMCONV='$(NLMCONV_PROG)$(EXEEXT)'
229 NLMCONV_DEFS="$NLMCONV_DEFS -DNLMCONV_POWERPC"
230 ;;
231 sparc*-*-netware*)
232 BUILD_NLMCONV='$(NLMCONV_PROG)$(EXEEXT)'
233 NLMCONV_DEFS="$NLMCONV_DEFS -DNLMCONV_SPARC"
234 ;;
235 esac
236 case $targ in
237 *-*-hms*) BUILD_SRCONV='$(SRCONV_PROG)' ;;
238 esac
239 case $targ in
240 arm-epoc-pe*)
241 BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
242 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_ARM_EPOC -DDLLTOOL_ARM"
243 BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
244 ;;
245 arm-wince-pe* | arm-*-wince)
246 BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
247 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_ARM_WINCE -DDLLTOOL_ARM"
248 BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
249 ;;
250 arm-*-pe*)
251 BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
252 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_ARM"
253 BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
254 ;;
255 thumb-*-pe*)
256 BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
257 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_ARM"
258 BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
259 ;;
260 x86_64-*-mingw64*)
261 changequote([,])dnl
262 BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
263 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_MX86_64"
264 BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
265 BUILD_DLLWRAP='$(DLLWRAP_PROG)$(EXEEXT)'
266 ;;
267 changequote(,)dnl
268 changequote(,)dnl
269 i[3-7]86-*-pe* | i[3-7]86-*-cygwin* | i[3-7]86-*-mingw32** | i[3-7]86-*-netbsdpe*)
270 changequote([,])dnl
271 BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
272 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_I386"
273 BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
274 BUILD_DLLWRAP='$(DLLWRAP_PROG)$(EXEEXT)'
275 ;;
276 changequote(,)dnl
277 i[3-7]86-*-interix)
278 changequote([,])dnl
279 BUILD_DLLTOOL='$(DLLTOOL_PROG)'
280 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_I386"
281 ;;
282 changequote(,)dnl
283 powerpc*-aix5.[01])
284 changequote([,])dnl
285 ;;
286 powerpc*-aix5.*)
287 OBJDUMP_DEFS="-DAIX_WEAK_SUPPORT"
288 ;;
289 powerpc*-*-pe* | powerpc*-*-cygwin*)
290 BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
291 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_PPC"
292 BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
293 ;;
294 sh*-*-pe)
295 BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
296 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_SH"
297 BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
298 ;;
299 mips*-*-pe)
300 BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
301 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_MIPS"
302 BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
303 ;;
304 mcore-*-pe)
305 BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
306 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_MCORE"
307 BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
308 ;;
309 mcore-*-elf)
310 BUILD_DLLTOOL='$(DLLTOOL_PROG)$(EXEEXT)'
311 DLLTOOL_DEFS="$DLLTOOL_DEFS -DDLLTOOL_MCORE_ELF"
312 ;;
313 esac
314 fi
315 done
316
317 if test "${with_windres+set}" = set; then
318 BUILD_WINDRES='$(WINDRES_PROG)$(EXEEXT)'
319 fi
320
321 AC_SUBST(NLMCONV_DEFS)
322 AC_SUBST(BUILD_NLMCONV)
323 AC_SUBST(BUILD_SRCONV)
324 AC_SUBST(BUILD_DLLTOOL)
325 AC_SUBST(DLLTOOL_DEFS)
326 AC_SUBST(BUILD_WINDRES)
327 AC_SUBST(BUILD_DLLWRAP)
328 AC_SUBST(BUILD_MISC)
329 AC_SUBST(OBJDUMP_DEFS)
330
331 AC_DEFINE_UNQUOTED(TARGET, "${target}", [Configured target name.])
332
333 targ=$target
334 . $srcdir/../bfd/config.bfd
335 if test "x$targ_underscore" = "xyes"; then
336 UNDERSCORE=1
337 else
338 UNDERSCORE=0
339 fi
340 AC_DEFINE_UNQUOTED(TARGET_PREPENDS_UNDERSCORE, $UNDERSCORE,
341 [Define to 1 if user symbol names have a leading underscore, 0 if not.])
342
343 # Emulation
344 for targ_alias in `echo $target_alias $enable_targets | sed 's/,/ /g'`
345 do
346 # Canonicalize the secondary target names.
347 result=`$ac_config_sub $targ_alias 2>/dev/null`
348 if test -n "$result"; then
349 targ=$result
350 else
351 targ=$targ_alias
352 fi
353
354 . ${srcdir}/configure.tgt
355
356 EMULATION=$targ_emul
357 EMULATION_VECTOR=$targ_emul_vector
358 done
359
360 AC_SUBST(EMULATION)
361 AC_SUBST(EMULATION_VECTOR)
362
363 # Required for html and install-html
364 AC_SUBST(datarootdir)
365 AC_SUBST(docdir)
366 AC_SUBST(htmldir)
367
368 AC_OUTPUT(Makefile doc/Makefile po/Makefile.in:po/Make-in)
This page took 0.036211 seconds and 4 git commands to generate.