* dvp-dis.c (print_dma): Change length from 16 to 8.
[deliverable/binutils-gdb.git] / gdb / configure.in
CommitLineData
2f4973f8
SG
1dnl Autoconf configure script for GDB, the GNU debugger.
2dnl Copyright 1995, 1996 Free Software Foundation, Inc.
3dnl
4dnl This file is part of GDB.
5dnl
6dnl This program is free software; you can redistribute it and/or modify
7dnl it under the terms of the GNU General Public License as published by
8dnl the Free Software Foundation; either version 2 of the License, or
9dnl (at your option) any later version.
10dnl
11dnl This program is distributed in the hope that it will be useful,
12dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
13dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14dnl GNU General Public License for more details.
15dnl
16dnl You should have received a copy of the GNU General Public License
17dnl along with this program; if not, write to the Free Software
476a283f 18dnl Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
2f4973f8 19
5436fc65 20dnl Process this file with autoconf to produce a configure script.
2f4973f8 21
5d8b7982 22AC_PREREQ(2.5)dnl
5436fc65 23AC_INIT(main.c)
18ea4416 24AC_CONFIG_HEADER(config.h:config.in)
5436fc65 25
5436fc65
C
26AC_PROG_CC
27AC_AIX
28AC_MINIX
29AC_ISC_POSIX
30
35ce4f08
GN
31DLLTOOL=${DLLTOOL-dlltool}
32AC_SUBST(DLLTOOL)
33
f02156cf 34AC_CONFIG_AUX_DIR(`cd $srcdir;pwd`/..)
0579b53d
GN
35AC_CANONICAL_SYSTEM
36
bfde4a67
SG
37dnl List of object files added by configure.
38
39CONFIG_OBS=
018d76dd 40CONFIG_DEPS=
c7bb1531 41CONFIG_SRCS=
bfde4a67
SG
42
43configdirs="doc testsuite"
44
45dnl
46changequote(,)dnl
47
48. ${srcdir}/configure.host
49
50. ${srcdir}/configure.tgt
51
52dnl
53changequote([,])dnl
54
5436fc65 55AC_PROG_INSTALL
d8efbc66
FF
56AC_CHECK_TOOL(AR, ar)
57AC_CHECK_TOOL(RANLIB, ranlib, :)
1e02f078 58AC_PROG_YACC
d8efbc66 59AC_PROG_AWK
5436fc65 60
5436fc65
C
61AC_ARG_PROGRAM
62
c14cabba
AC
63AC_TYPE_SIGNAL
64
2b576293 65AC_HEADER_STDC
0db3fe94 66AC_CHECK_HEADERS(limits.h memory.h string.h strings.h unistd.h termios.h termio.h sgtty.h stddef.h stdlib.h sys/procfs.h link.h endian.h objlist.h)
2b576293
C
67AC_HEADER_STAT
68
8501c742
SG
69AC_C_CONST
70
e7ab2a47 71AC_CHECK_FUNCS(setpgid sbrk select poll sigaction)
72ae15f6 72
54225fd0
MA
73# If we are configured native on Linux, work around problems with sys/procfs.h
74if test "${target}" = "${host}"; then
75 case "${host}" in
3435297a 76 i[[3456]]86-*-linux*)
0728afad 77 AC_DEFINE(START_INFERIOR_TRAPS_EXPECTED,2)
54225fd0
MA
78 AC_DEFINE(sys_quotactl)
79 ;;
80 esac
81fi
82
4708ac65 83AC_MSG_CHECKING([for gregset_t type])
07b77f5c 84AC_CACHE_VAL(gdb_cv_have_gregset_t,
4708ac65 85[AC_TRY_LINK([#include <sys/procfs.h>],[gregset_t *gregsetp = 0],
07b77f5c
FF
86gdb_cv_have_gregset_t=yes, gdb_cv_have_gregset_t=no)])
87AC_MSG_RESULT($gdb_cv_have_gregset_t)
88if test $gdb_cv_have_gregset_t = yes; then
4708ac65
FF
89 AC_DEFINE(HAVE_GREGSET_T)
90fi
91
92AC_MSG_CHECKING([for fpregset_t type])
07b77f5c 93AC_CACHE_VAL(gdb_cv_have_fpregset_t,
4708ac65 94[AC_TRY_LINK([#include <sys/procfs.h>],[fpregset_t *fpregsetp = 0],
07b77f5c
FF
95gdb_cv_have_fpregset_t=yes, gdb_cv_have_fpregset_t=no)])
96AC_MSG_RESULT($gdb_cv_have_fpregset_t)
97if test $gdb_cv_have_fpregset_t = yes; then
4708ac65
FF
98 AC_DEFINE(HAVE_FPREGSET_T)
99fi
100
ef6c51d1
SG
101dnl See if host has libm. This is usually needed by simulators.
102AC_CHECK_LIB(m, main)
103
3f550b59
FF
104dnl See if compiler supports "long long" type.
105
106AC_MSG_CHECKING(for long long support in compiler)
107AC_CACHE_VAL(gdb_cv_c_long_long,
80f600a4 108[AC_TRY_COMPILE(, [
d538f9cf
FF
109 extern long long foo;
110 switch (foo & 2) { case 0: return 1; }
111],
3f550b59
FF
112gdb_cv_c_long_long=yes, gdb_cv_c_long_long=no)])
113AC_MSG_RESULT($gdb_cv_c_long_long)
114if test $gdb_cv_c_long_long = yes; then
115 AC_DEFINE(CC_HAS_LONG_LONG)
116fi
117
118dnl See if the compiler and runtime support printing long long
119
120AC_MSG_CHECKING(for long long support in printf)
121AC_CACHE_VAL(gdb_cv_printf_has_long_long,
122[AC_TRY_RUN([
123int main () {
f7b8c9ce
AC
124 char buf[32];
125 long long l = 0;
126 l = (l << 16) + 0x0123;
127 l = (l << 16) + 0x4567;
128 l = (l << 16) + 0x89ab;
129 l = (l << 16) + 0xcdef;
130 sprintf (buf, "0x%016llx", l);
131 return (strcmp ("0x0123456789abcdef", buf));
3f550b59
FF
132}],
133gdb_cv_printf_has_long_long=yes,
134gdb_cv_printf_has_long_long=no,
135gdb_cv_printf_has_long_long=no)])
136if test $gdb_cv_printf_has_long_long = yes; then
137 AC_DEFINE(PRINTF_HAS_LONG_LONG)
138fi
139AC_MSG_RESULT($gdb_cv_printf_has_long_long)
140
aa220473
SG
141dnl See if compiler supports "long double" type. Can't use AC_C_LONG_DOUBLE
142dnl because autoconf complains about cross-compilation issues. However, this
143dnl code uses the same variables as the macro for compatibility.
144
07b77f5c 145AC_MSG_CHECKING(for long double support in compiler)
aa220473
SG
146AC_CACHE_VAL(ac_cv_c_long_double,
147[AC_TRY_COMPILE(, [long double foo;],
148ac_cv_c_long_double=yes, ac_cv_c_long_double=no)])
149AC_MSG_RESULT($ac_cv_c_long_double)
150if test $ac_cv_c_long_double = yes; then
151 AC_DEFINE(HAVE_LONG_DOUBLE)
152fi
153
07b77f5c
FF
154dnl See if the compiler and runtime support printing long doubles
155
156AC_MSG_CHECKING(for long double support in printf)
157AC_CACHE_VAL(gdb_cv_printf_has_long_double,
158[AC_TRY_RUN([
159int main () {
160 char buf[16];
161 long double f = 3.141592653;
162 sprintf (buf, "%Lg", f);
163 return (strncmp ("3.14159", buf, 7));
164}],
165gdb_cv_printf_has_long_double=yes,
166gdb_cv_printf_has_long_double=no,
167gdb_cv_printf_has_long_double=no)])
168if test $gdb_cv_printf_has_long_double = yes; then
169 AC_DEFINE(PRINTF_HAS_LONG_DOUBLE)
170fi
171AC_MSG_RESULT($gdb_cv_printf_has_long_double)
172
f7b8c9ce
AC
173dnl See if the compiler and runtime support scanning long doubles
174
175AC_MSG_CHECKING(for long double support in scanf)
176AC_CACHE_VAL(gdb_cv_scanf_has_long_double,
177[AC_TRY_RUN([
178int main () {
179 char *buf = "3.141592653";
180 long double f = 0;
181 sscanf (buf, "%Lg", &f);
182 return !(f > 3.14159 && f < 3.14160);
183}],
184gdb_cv_scanf_has_long_double=yes,
185gdb_cv_scanf_has_long_double=no,
186gdb_cv_scanf_has_long_double=no)])
187if test $gdb_cv_scanf_has_long_double = yes; then
188 AC_DEFINE(SCANF_HAS_LONG_DOUBLE)
189fi
190AC_MSG_RESULT($gdb_cv_scanf_has_long_double)
191
2b576293 192AC_FUNC_MMAP
5436fc65 193
fef1696f
ILT
194BFD_NEED_DECLARATION(malloc)
195BFD_NEED_DECLARATION(realloc)
196BFD_NEED_DECLARATION(free)
197
4915acad
SG
198dnl See if thread_db library is around for Solaris thread debugging. Note that
199dnl we must explicitly test for version 1 of the library because version 0
200dnl (present on Solaris 2.4 or earlier) doesn't have the same API.
201
89e673a4
SG
202dnl Note that we only want this if we are both native (host == target), and
203dnl not doing a canadian cross build (build == host).
204
205if test ${build} = ${host} -a ${host} = ${target} ; then
4b95e9a1
JM
206 case ${host_os} in
207 hpux*)
208 AC_MSG_CHECKING(for HPUX/OSF thread support)
209 if test -f /usr/include/dce/cma_config.h ; then
210 if test "$GCC" = "yes" ; then
211 AC_MSG_RESULT(yes)
212 AC_DEFINE(HAVE_HPUX_THREAD_SUPPORT)
213 CONFIG_OBS="${CONFIG_OJS} hpux-thread.o"
c7bb1531 214 CONFIG_SRCS="${CONFIG_SRCS} hpux-thread.c"
4b95e9a1
JM
215 else
216 AC_MSG_RESULT(no (suppressed because you are not using GCC))
217 fi
218 else
219 AC_MSG_RESULT(no)
220 fi
221 ;;
222 solaris*)
223 AC_MSG_CHECKING(for Solaris thread debugging library)
224 if test -f /usr/lib/libthread_db.so.1 ; then
225 AC_MSG_RESULT(yes)
226 AC_DEFINE(HAVE_THREAD_DB_LIB)
227 CONFIG_OBS="${CONFIG_OBS} sol-thread.o"
c7bb1531 228 CONFIG_SRCS="${CONFIG_SRCS} sol-thread.c"
4b95e9a1
JM
229 AC_CHECK_LIB(dl, dlopen)
230 if test "$GCC" = "yes" ; then
231 # The GNU linker requires the -export-dynamic option to make
232 # all symbols visible in the dynamic symbol table.
233 hold_ldflags=$LDFLAGS
234 AC_MSG_CHECKING(for the ld -export-dynamic flag)
235 LDFLAGS="${LDFLAGS} -Wl,-export-dynamic"
236 AC_TRY_LINK(, [int i;], found=yes, found=no)
237 LDFLAGS=$hold_ldflags
238 AC_MSG_RESULT($found)
239 if test $found = yes; then
240 CONFIG_LDFLAGS="${CONFIG_LDFLAGS} -Wl,-export-dynamic"
241 fi
242 fi
243 else
244 AC_MSG_RESULT(no)
245 fi
246 ;;
247 esac
248 AC_SUBST(CONFIG_LDFLAGS)
89e673a4 249fi
47ef0da5 250
5436fc65
C
251dnl Handle optional features that can be enabled.
252ENABLE_CFLAGS=
5436fc65
C
253
254AC_ARG_ENABLE(netrom,
255[ --enable-netrom ],
256[case "${enableval}" in
257yes) enable_netrom=yes ;;
258no) enable_netrom=no ;;
259*) AC_MSG_ERROR(bad value ${enableval} given for netrom option) ;;
260esac])
261
262if test "${enable_netrom}" = "yes"; then
6c310da8 263 CONFIG_OBS="${CONFIG_OBS} remote-nrom.o"
c7bb1531 264 CONFIG_SRCS="${CONFIG_SRCS} remote-nrom.c"
5436fc65
C
265fi
266
0728afad
FF
267MMALLOC_CFLAGS=
268MMALLOC=
269AC_SUBST(MMALLOC_CFLAGS)
270AC_SUBST(MMALLOC)
271
272AC_ARG_WITH(mmalloc,
273[ --with-mmalloc use memory mapped malloc package],
274[case "${withval}" in
275 yes) want_mmalloc=true ;;
276 no) want_mmalloc=false;;
277 *) AC_MSG_ERROR(bad value ${withval} for GDB with-mmalloc option) ;;
278esac],[want_mmalloc=false])dnl
279
280if test x$want_mmalloc = xtrue; then
281 AC_DEFINE(USE_MMALLOC)
dd600735 282 AC_DEFINE(MMCHECK_FORCE)
0728afad
FF
283 MMALLOC_CFLAGS="-I$srcdir/../mmalloc"
284 MMALLOC='../mmalloc/libmmalloc.a'
285fi
286
5436fc65 287# start-sanitize-gdbtk
2476848a
MH
288ENABLE_IDE=
289AC_ARG_ENABLE(ide, [ --enable-ide Enable IDE support])
290if test "$enable_ide" = yes; then
291 enable_ide=yes
292 ENABLE_IDE=1
293else
294 enable_ide=no
295fi
296AC_SUBST(ENABLE_IDE)
297
5436fc65
C
298ENABLE_GDBTK=
299
300AC_ARG_ENABLE(gdbtk,
301[ --enable-gdbtk ],
302[case "${enableval}" in
0fe1522a
SG
303 yes)
304 case "$host" in
305 *go32*)
306 AC_MSG_WARN([GDB does not support GDBtk on host ${host}. GDBtk will be disabled.])
307 enable_gdbtk=no ;;
8a19b35a 308 *windows*)
b613bfbf
GN
309 AC_MSG_WARN([GDB does not support GDBtk on host ${host}. GDBtk will be disabled.])
310 enable_gdbtk=no ;;
0fe1522a
SG
311 *)
312 enable_gdbtk=yes ;;
313 esac ;;
314 no)
315 enable_gdbtk=no ;;
316 *)
317 AC_MSG_ERROR(bad value ${enableval} given for gdbtk option) ;;
318esac],
319[
b613bfbf 320# Default is on for everything but go32 and cygwin32
0fe1522a 321case "$host" in
8a19b35a 322 *go32* | *windows*)
b613bfbf 323 ;;
0fe1522a
SG
324 *)
325 enable_gdbtk=yes ;;
326 esac
327])
5436fc65 328
9b119644
ILT
329# In the cygwin32 environment, we need some additional flags.
330AC_CACHE_CHECK([for cygwin32], gdb_cv_os_cygwin32,
331[AC_EGREP_CPP(lose, [
332#ifdef __CYGWIN32__
333lose
334#endif],[gdb_cv_os_cygwin32=yes],[gdb_cv_os_cygwin32=no])])
335
336WIN32LIBS=
337WIN32LDAPP=
338AC_SUBST(WIN32LIBS)
339AC_SUBST(WIN32LDAPP)
340
341if test x$gdb_cv_os_cygwin32 = xyes; then
342 if test x$enable_ide = xyes; then
343 WIN32LIBS="-ladvapi32"
344 fi
345fi
346
347configdir="unix"
8a19b35a 348
5436fc65 349if test "${enable_gdbtk}" = "yes"; then
0fe1522a 350
047465fd 351 CY_AC_PATH_TCLCONFIG
0cf433d9
ILT
352 if test -z "${no_tcl}"; then
353 CY_AC_LOAD_TCLCONFIG
354 CY_AC_PATH_TKCONFIG
047465fd 355
0cf433d9
ILT
356 # If $no_tk is nonempty, then we can't do Tk, and there is no
357 # point to doing Tcl.
358 if test -z "${no_tk}"; then
359 CY_AC_LOAD_TKCONFIG
360 CY_AC_PATH_TCLH
361 CY_AC_PATH_TKH
2476848a
MH
362 CY_AC_PATH_ITCLH
363 CY_AC_PATH_TIX
047465fd 364
6bc5b2fa 365 # now look for tix library stuff
1154b47a 366 TIXVERSION=4.1.8.0
6bc5b2fa
MH
367 . ${ac_cv_c_tclconfig}/tclConfig.sh
368 case "${host}" in
369 *-*-cygwin32*)
f1f6dd9c 370 tixdir=../tix/win/tcl8.0
6bc5b2fa
MH
371 ;;
372 *)
1154b47a 373 tixdir=../tix/unix/tk8.0
6bc5b2fa
MH
374 ;;
375 esac
bb3d9f43
KS
376 if test "${TCL_SHARED_BUILD}" = "1"; then
377 TIX_LIB_EXT="${TCL_SHLIB_SUFFIX}"
11f91b2b
KS
378
379 # Can't win them all: SunOS 4 (others?) appends a version
380 # number after the ".so"
381 case "${host}" in
382 *-*-sunos4*)
383 TIX_LIB_EXT="${TIX_LIB_EXT}.1.0" ;;
384 esac
385
bb3d9f43
KS
386 else
387 TIX_LIB_EXT=".a"
388 fi
11f91b2b 389
6bc5b2fa
MH
390 if test "${TCL_LIB_VERSIONS_OK}" = "ok"; then
391 TIXLIB="-L${tixdir} -ltix${TIXVERSION}"
bb3d9f43 392 TIX_DEPS="${tixdir}/libtix${TIXVERSION}${TIX_LIB_EXT}"
6bc5b2fa
MH
393 else
394 TIXLIB="-L${tixdir} -ltix`echo ${TIXVERSION} | tr -d .`"
bb3d9f43 395 TIX_DEPS="${tixdir}/libtix`echo ${TIXVERSION} | tr -d .`${TIX_LIB_EXT}"
6bc5b2fa
MH
396 fi
397
0cf433d9 398 ENABLE_GDBTK=1
1a57cd09 399
6c310da8 400 # Include some libraries that Tcl and Tk want.
2476848a 401 if test "${enable_ide}" = "yes"; then
dafec9dd
ILT
402 TCL_LIBS='$(LIBIDE) $(LIBGUI) $(IDE) $(ITCL) $(TIX) $(TK) $(TCL) $(X11_LDFLAGS) $(X11_LIBS)'
403 CONFIG_DEPS='$(LIBIDE) $(LIBGUI) $(IDE_DEPS) $(ITCL_DEPS) $(TIX_DEPS) $(TK_DEPS) $(TCL_DEPS)'
2476848a 404 else
dafec9dd
ILT
405 TCL_LIBS='$(LIBGUI) $(ITCL) $(TIX) $(TK) $(TCL) $(X11_LDFLAGS) $(X11_LIBS)'
406 CONFIG_DEPS='$(LIBGUI) $(ITCL_DEPS) $(TIX_DEPS) $(TK_DEPS) $(TCL_DEPS)'
2476848a 407 fi
46964086
TT
408 # Yes, the ordering seems wrong here. But it isn't.
409 # TK_LIBS is the list of libraries that need to be linked
410 # after Tcl/Tk.
411 LIBS="${LIBS} ${TCL_LIBS} ${TK_LIBS}"
dd3dd918 412 CONFIG_OBS="${CONFIG_OBS} gdbtk.o"
9b119644
ILT
413
414 if test x$gdb_cv_os_cygwin32 = xyes; then
018d76dd 415 WIN32LIBS="${WIN32LIBS} -lshell32 -lgdi32 -lcomdlg32 -ladvapi32 -luser32"
9b119644
ILT
416 WIN32LDAPP="-Wl,--subsystem,windows"
417 fi
0cf433d9 418 fi
a2b63bbd 419 fi
5436fc65 420fi
a2b63bbd 421
5436fc65 422AC_SUBST(ENABLE_GDBTK)
9c0bc1da 423AC_SUBST(X_CFLAGS)
a2b63bbd
JM
424AC_SUBST(X_LDFLAGS)
425AC_SUBST(X_LIBS)
6bc5b2fa 426AC_SUBST(TIXLIB)
018d76dd 427AC_SUBST(TIX_DEPS)
5436fc65
C
428# end-sanitize-gdbtk
429
430AC_SUBST(ENABLE_CFLAGS)
6c310da8
SG
431
432AC_SUBST(CONFIG_OBS)
018d76dd 433AC_SUBST(CONFIG_DEPS)
c7bb1531 434AC_SUBST(CONFIG_SRCS)
6ec7e4d3 435
1d5eb137
FF
436# Begin stuff to support --enable-shared
437AC_ARG_ENABLE(shared,
438[ --enable-shared use shared libraries],
439[case "${enableval}" in
440 yes) shared=true ;;
441 no) shared=false ;;
442 *) shared=true ;;
443esac])dnl
444
445HLDFLAGS=
446HLDENV=
447# If we have shared libraries, try to set rpath reasonably.
448if test "${shared}" = "true"; then
449 case "${host}" in
450 *-*-hpux*)
451 HLDFLAGS='-Wl,+s,+b,$(libdir)'
452 ;;
453 *-*-irix5* | *-*-irix6*)
454 HLDFLAGS='-Wl,-rpath,$(libdir)'
455 ;;
456 *-*-linux*aout*)
457 ;;
8ddf07a2 458 *-*-linux* | *-pc-linux-gnu)
1d5eb137
FF
459 HLDFLAGS='-Wl,-rpath,$(libdir)'
460 ;;
461 *-*-solaris*)
462 HLDFLAGS='-R $(libdir)'
463 ;;
464 *-*-sysv4*)
465 HLDENV='if test -z "$${LD_RUN_PATH}"; then LD_RUN_PATH=$(libdir); else LD_RUN_PATH=$${LD_RUN_PATH}:$(libdir); fi; export LD_RUN_PATH;'
466 ;;
467 esac
468fi
469
470# On SunOS, if the linker supports the -rpath option, use it to
471# prevent ../bfd and ../opcodes from being included in the run time
472# search path.
473case "${host}" in
474 *-*-sunos*)
475 echo 'main () { }' > conftest.c
476 ${CC} -o conftest -Wl,-rpath= conftest.c >/dev/null 2>conftest.t
477 if grep 'unrecognized' conftest.t >/dev/null 2>&1; then
478 :
479 elif grep 'No such file' conftest.t >/dev/null 2>&1; then
480 :
481 elif grep 'do not mix' conftest.t >/dev/null 2>&1; then
482 :
074d813d
PS
483 elif grep 'some text already loaded' conftest.t >/dev/null 2>&1; then
484 :
1d5eb137
FF
485 elif test "${shared}" = "true"; then
486 HLDFLAGS='-Wl,-rpath=$(libdir)'
487 else
488 HLDFLAGS='-Wl,-rpath='
489 fi
490 rm -f conftest.t conftest.c conftest
491 ;;
492esac
493AC_SUBST(HLDFLAGS)
494AC_SUBST(HLDENV)
495# End stuff to support --enable-shared
496
9c0bc1da
DE
497# target_subdir is used by the testsuite to find the target libraries.
498target_subdir=
499if test "${host}" != "${target}"; then
500 target_subdir="${target_alias}/"
501fi
502AC_SUBST(target_subdir)
bc028766 503
5f107900 504frags=
5436fc65
C
505host_makefile_frag=${srcdir}/config/${gdb_host_cpu}/${gdb_host}.mh
506if test ! -f ${host_makefile_frag}; then
507AC_MSG_ERROR("*** Gdb does not support host ${host}")
912e0732 508fi
5f107900 509frags="$frags $host_makefile_frag"
912e0732 510
5436fc65
C
511target_makefile_frag=${srcdir}/config/${gdb_target_cpu}/${gdb_target}.mt
512if test ! -f ${target_makefile_frag}; then
513AC_MSG_ERROR("*** Gdb does not support target ${target}")
912e0732 514fi
5f107900 515frags="$frags $target_makefile_frag"
912e0732 516
5436fc65
C
517AC_SUBST_FILE(host_makefile_frag)
518AC_SUBST_FILE(target_makefile_frag)
5f107900 519AC_SUBST(frags)
5436fc65 520
094fd4ae
C
521changequote(,)dnl
522hostfile=`sed -n '
523s/XM_FILE[ ]*=[ ]*\([^ ]*\)/\1/p
524' ${host_makefile_frag}`
5436fc65 525
094fd4ae
C
526targetfile=`sed -n '
527s/TM_FILE[ ]*=[ ]*\([^ ]*\)/\1/p
528' ${target_makefile_frag}`
79f68f0f
DZ
529
530# these really aren't orthogonal true/false values of the same condition,
531# but shells are slow enough that I like to reuse the test conditions
532# whenever possible
5436fc65 533if test "${target}" = "${host}"; then
094fd4ae
C
534nativefile=`sed -n '
535s/NAT_FILE[ ]*=[ ]*\([^ ]*\)/\1/p
536' ${host_makefile_frag}`
33ef0f93 537# else
5436fc65 538# GDBserver is only useful in a "native" enviroment
33ef0f93 539# configdirs=`echo $configdirs | sed 's/gdbserver//'`
d40309c7 540fi
094fd4ae 541changequote([,])
d40309c7 542
d40309c7 543# If hostfile (XM_FILE) and/or targetfile (TM_FILE) and/or nativefile
6573c898 544# (NAT_FILE) is not set in config/*/*.m[ht] files, we don't make the
d40309c7
JG
545# corresponding links. But we have to remove the xm.h files and tm.h
546# files anyway, e.g. when switching from "configure host" to
547# "configure none".
548
bdf3621b
JG
549files=
550links=
dc0c3f64 551rm -f xm.h
5436fc65
C
552if test "${hostfile}" != ""; then
553files="${files} config/${gdb_host_cpu}/${hostfile}"
554links="${links} xm.h"
bdf3621b 555fi
dc0c3f64 556rm -f tm.h
5436fc65
C
557if test "${targetfile}" != ""; then
558files="${files} config/${gdb_target_cpu}/${targetfile}"
559links="${links} tm.h"
bdf3621b 560fi
1a0edbc7 561rm -f nm.h
5436fc65
C
562if test "${nativefile}" != ""; then
563files="${files} config/${gdb_host_cpu}/${nativefile}"
564links="${links} nm.h"
c9c23412 565else
5436fc65
C
566# A cross-only configuration.
567files="${files} config/nm-empty.h"
568links="${links} nm.h"
d40309c7 569fi
d3d75ec9 570# start-sanitize-gdbtk
99174711 571AC_PROG_LN_S
5436fc65 572# Make it possible to use the GUI without doing a full install
99174711
JM
573if test "${enable_gdbtk}" = "yes" -a ! -d gdbtcl ; then
574 if test "$LN_S" = "ln -s" -a ! -f gdbtcl ; then
575 echo linking $srcdir/gdbtcl to gdbtcl
576 $LN_S $srcdir/gdbtcl gdbtcl
577 else
578 echo Warning: Unable to link $srcdir/gdbtcl to gdbtcl. You will need to do a
579 echo " " make install before you are able to run the GUI.
580 fi
754e5da2 581fi
d3d75ec9 582# end-sanitize-gdbtk
754e5da2 583
5436fc65
C
584AC_LINK_FILES($files, $links)
585
98fa4ade
GN
586dnl Check for exe extension set on certain hosts (e.g. Win32)
587AM_EXEEXT
588
5436fc65 589AC_CONFIG_SUBDIRS($configdirs)
0cb7d01d 590AC_OUTPUT(Makefile .gdbinit:gdbinit.in,
5436fc65
C
591[
592dnl Autoconf doesn't provide a mechanism for modifying definitions
593dnl provided by makefile fragments.
594dnl
595if test "${nativefile}" = ""; then
7bd1f0c5 596sed -e '/^NATDEPFILES[[ ]]*=[[ ]]*/s//# NATDEPFILES=/' \
5436fc65
C
597 < Makefile > Makefile.tem
598mv -f Makefile.tem Makefile
33bc979d
SS
599fi
600
5436fc65 601changequote(,)dnl
94d4b713
JK
602sed -e '/^TM_FILE[ ]*=/s,^TM_FILE[ ]*=[ ]*,&config/'"${gdb_target_cpu}"'/,
603/^XM_FILE[ ]*=/s,^XM_FILE[ ]*=[ ]*,&config/'"${gdb_host_cpu}"'/,
604/^NAT_FILE[ ]*=/s,^NAT_FILE[ ]*=[ ]*,&config/'"${gdb_host_cpu}"'/,' <Makefile >Makefile.tmp
605mv -f Makefile.tmp Makefile
5436fc65
C
606changequote([,])dnl
607
31520669 608case x$CONFIG_HEADERS in
18ea4416 609xconfig.h:config.in)
31520669
FF
610echo > stamp-h ;;
611esac
0a5a1821
C
612],
613[
614gdb_host_cpu=$gdb_host_cpu
615gdb_target_cpu=$gdb_target_cpu
616nativefile=$nativefile
5436fc65 617])
5e711e7f
PS
618
619exit 0
b7f3b6d5 620
This page took 0.306924 seconds and 4 git commands to generate.