* symtab.c, dbxread.c, stabsread.c: Fix up ANSI-C isms. Fix
[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=
40
41configdirs="doc testsuite"
42
43dnl
44changequote(,)dnl
45
46. ${srcdir}/configure.host
47
48. ${srcdir}/configure.tgt
49
50dnl
51changequote([,])dnl
52
5436fc65 53AC_PROG_INSTALL
d8efbc66
FF
54AC_CHECK_TOOL(AR, ar)
55AC_CHECK_TOOL(RANLIB, ranlib, :)
1e02f078 56AC_PROG_YACC
d8efbc66 57AC_PROG_AWK
5436fc65 58
5436fc65
C
59AC_ARG_PROGRAM
60
c14cabba
AC
61AC_TYPE_SIGNAL
62
2b576293 63AC_HEADER_STDC
0db3fe94 64AC_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
65AC_HEADER_STAT
66
8501c742
SG
67AC_C_CONST
68
5d394f70 69AC_CHECK_FUNCS(setpgid sbrk select poll)
72ae15f6 70
54225fd0
MA
71# If we are configured native on Linux, work around problems with sys/procfs.h
72if test "${target}" = "${host}"; then
73 case "${host}" in
74 i[3456]86-*-linux*)
75 AC_DEFINE(START_INFERIOR_TRAPS_EXPECTED,"2")
76 AC_DEFINE(sys_quotactl)
77 ;;
78 esac
79fi
80
4708ac65 81AC_MSG_CHECKING([for gregset_t type])
07b77f5c 82AC_CACHE_VAL(gdb_cv_have_gregset_t,
4708ac65 83[AC_TRY_LINK([#include <sys/procfs.h>],[gregset_t *gregsetp = 0],
07b77f5c
FF
84gdb_cv_have_gregset_t=yes, gdb_cv_have_gregset_t=no)])
85AC_MSG_RESULT($gdb_cv_have_gregset_t)
86if test $gdb_cv_have_gregset_t = yes; then
4708ac65
FF
87 AC_DEFINE(HAVE_GREGSET_T)
88fi
89
90AC_MSG_CHECKING([for fpregset_t type])
07b77f5c 91AC_CACHE_VAL(gdb_cv_have_fpregset_t,
4708ac65 92[AC_TRY_LINK([#include <sys/procfs.h>],[fpregset_t *fpregsetp = 0],
07b77f5c
FF
93gdb_cv_have_fpregset_t=yes, gdb_cv_have_fpregset_t=no)])
94AC_MSG_RESULT($gdb_cv_have_fpregset_t)
95if test $gdb_cv_have_fpregset_t = yes; then
4708ac65
FF
96 AC_DEFINE(HAVE_FPREGSET_T)
97fi
98
ef6c51d1
SG
99dnl See if host has libm. This is usually needed by simulators.
100AC_CHECK_LIB(m, main)
101
3f550b59
FF
102dnl See if compiler supports "long long" type.
103
104AC_MSG_CHECKING(for long long support in compiler)
105AC_CACHE_VAL(gdb_cv_c_long_long,
80f600a4 106[AC_TRY_COMPILE(, [
d538f9cf
FF
107 extern long long foo;
108 switch (foo & 2) { case 0: return 1; }
109],
3f550b59
FF
110gdb_cv_c_long_long=yes, gdb_cv_c_long_long=no)])
111AC_MSG_RESULT($gdb_cv_c_long_long)
112if test $gdb_cv_c_long_long = yes; then
113 AC_DEFINE(CC_HAS_LONG_LONG)
114fi
115
116dnl See if the compiler and runtime support printing long long
117
118AC_MSG_CHECKING(for long long support in printf)
119AC_CACHE_VAL(gdb_cv_printf_has_long_long,
120[AC_TRY_RUN([
121int main () {
122 char buf[16];
123 long long l = 0x12345;
124 sprintf (buf, "%llx", l);
125 return (strcmp ("12345", buf));
126}],
127gdb_cv_printf_has_long_long=yes,
128gdb_cv_printf_has_long_long=no,
129gdb_cv_printf_has_long_long=no)])
130if test $gdb_cv_printf_has_long_long = yes; then
131 AC_DEFINE(PRINTF_HAS_LONG_LONG)
132fi
133AC_MSG_RESULT($gdb_cv_printf_has_long_long)
134
aa220473
SG
135dnl See if compiler supports "long double" type. Can't use AC_C_LONG_DOUBLE
136dnl because autoconf complains about cross-compilation issues. However, this
137dnl code uses the same variables as the macro for compatibility.
138
07b77f5c 139AC_MSG_CHECKING(for long double support in compiler)
aa220473
SG
140AC_CACHE_VAL(ac_cv_c_long_double,
141[AC_TRY_COMPILE(, [long double foo;],
142ac_cv_c_long_double=yes, ac_cv_c_long_double=no)])
143AC_MSG_RESULT($ac_cv_c_long_double)
144if test $ac_cv_c_long_double = yes; then
145 AC_DEFINE(HAVE_LONG_DOUBLE)
146fi
147
07b77f5c
FF
148dnl See if the compiler and runtime support printing long doubles
149
150AC_MSG_CHECKING(for long double support in printf)
151AC_CACHE_VAL(gdb_cv_printf_has_long_double,
152[AC_TRY_RUN([
153int main () {
154 char buf[16];
155 long double f = 3.141592653;
156 sprintf (buf, "%Lg", f);
157 return (strncmp ("3.14159", buf, 7));
158}],
159gdb_cv_printf_has_long_double=yes,
160gdb_cv_printf_has_long_double=no,
161gdb_cv_printf_has_long_double=no)])
162if test $gdb_cv_printf_has_long_double = yes; then
163 AC_DEFINE(PRINTF_HAS_LONG_DOUBLE)
164fi
165AC_MSG_RESULT($gdb_cv_printf_has_long_double)
166
2b576293 167AC_FUNC_MMAP
5436fc65 168
fef1696f
ILT
169BFD_NEED_DECLARATION(malloc)
170BFD_NEED_DECLARATION(realloc)
171BFD_NEED_DECLARATION(free)
172
4915acad
SG
173dnl See if thread_db library is around for Solaris thread debugging. Note that
174dnl we must explicitly test for version 1 of the library because version 0
175dnl (present on Solaris 2.4 or earlier) doesn't have the same API.
176
89e673a4
SG
177dnl Note that we only want this if we are both native (host == target), and
178dnl not doing a canadian cross build (build == host).
179
180if test ${build} = ${host} -a ${host} = ${target} ; then
5d394f70
SG
181 case ${host_os} in
182 hpux*)
183 AC_MSG_CHECKING(for HPUX/OSF thread support)
184 if test -f /usr/include/dce/cma_config.h ; then
c4c9112a
SG
185 if test "$GCC" = "yes" ; then
186 AC_MSG_RESULT(yes)
187 AC_DEFINE(HAVE_HPUX_THREAD_SUPPORT)
188 CONFIG_OBS="${CONFIG_OJS} hpux-thread.o"
189 else
190 AC_MSG_RESULT(no (suppressed because you are not using GCC))
191 fi
6c310da8
SG
192 else
193 AC_MSG_RESULT(no)
194 fi
195 ;;
196 solaris*)
197 AC_MSG_CHECKING(for Solaris thread debugging library)
198 if test -f /usr/lib/libthread_db.so.1 ; then
199 AC_MSG_RESULT(yes)
200 AC_DEFINE(HAVE_THREAD_DB_LIB)
201 CONFIG_OBS="${CONFIG_OBS} sol-thread.o"
95b47547 202 AC_CHECK_LIB(dl, dlopen)
ef6c51d1
SG
203 if test "$GCC" = "yes" ; then
204 CONFIG_LDFLAGS="${CONFIG_LDFLAGS} -Xlinker -export-dynamic"
205 fi
5d394f70
SG
206 else
207 AC_MSG_RESULT(no)
208 fi
209 ;;
210 esac
4915acad 211 AC_SUBST(CONFIG_LDFLAGS)
89e673a4 212fi
47ef0da5 213
5436fc65
C
214dnl Handle optional features that can be enabled.
215ENABLE_CFLAGS=
5436fc65
C
216
217AC_ARG_ENABLE(netrom,
218[ --enable-netrom ],
219[case "${enableval}" in
220yes) enable_netrom=yes ;;
221no) enable_netrom=no ;;
222*) AC_MSG_ERROR(bad value ${enableval} given for netrom option) ;;
223esac])
224
225if test "${enable_netrom}" = "yes"; then
6c310da8 226 CONFIG_OBS="${CONFIG_OBS} remote-nrom.o"
5436fc65
C
227fi
228
188c635f
SG
229# start-sanitize-gm
230ENABLE_GM=
231
232AC_ARG_ENABLE(gm,
233[ --enable-gm ],
234[case "${enableval}" in
6c310da8 235yes) CONFIG_OBS="${CONFIG_OBS} gmagic.o"
188c635f
SG
236 ENABLE_CFLAGS=-DGENERAL_MAGIC
237 ;;
238no) ;;
239*) AC_MSG_ERROR(bad value ${enableval} given for gm option) ;;
240esac])
241
242# end-sanitize-gm
243
5436fc65 244# start-sanitize-gdbtk
2476848a
MH
245ENABLE_IDE=
246AC_ARG_ENABLE(ide, [ --enable-ide Enable IDE support])
247if test "$enable_ide" = yes; then
248 enable_ide=yes
249 ENABLE_IDE=1
250else
251 enable_ide=no
252fi
253AC_SUBST(ENABLE_IDE)
254
5436fc65
C
255ENABLE_GDBTK=
256
257AC_ARG_ENABLE(gdbtk,
258[ --enable-gdbtk ],
259[case "${enableval}" in
0fe1522a
SG
260 yes)
261 case "$host" in
262 *go32*)
263 AC_MSG_WARN([GDB does not support GDBtk on host ${host}. GDBtk will be disabled.])
264 enable_gdbtk=no ;;
8a19b35a 265 *windows*)
b613bfbf
GN
266 AC_MSG_WARN([GDB does not support GDBtk on host ${host}. GDBtk will be disabled.])
267 enable_gdbtk=no ;;
0fe1522a
SG
268 *)
269 enable_gdbtk=yes ;;
270 esac ;;
271 no)
272 enable_gdbtk=no ;;
273 *)
274 AC_MSG_ERROR(bad value ${enableval} given for gdbtk option) ;;
275esac],
276[
b613bfbf 277# Default is on for everything but go32 and cygwin32
0fe1522a 278case "$host" in
8a19b35a 279 *go32* | *windows*)
b613bfbf 280 ;;
0fe1522a
SG
281 *)
282 enable_gdbtk=yes ;;
283 esac
284])
5436fc65 285
9b119644
ILT
286# In the cygwin32 environment, we need some additional flags.
287AC_CACHE_CHECK([for cygwin32], gdb_cv_os_cygwin32,
288[AC_EGREP_CPP(lose, [
289#ifdef __CYGWIN32__
290lose
291#endif],[gdb_cv_os_cygwin32=yes],[gdb_cv_os_cygwin32=no])])
292
293WIN32LIBS=
294WIN32LDAPP=
295AC_SUBST(WIN32LIBS)
296AC_SUBST(WIN32LDAPP)
297
298if test x$gdb_cv_os_cygwin32 = xyes; then
299 if test x$enable_ide = xyes; then
300 WIN32LIBS="-ladvapi32"
301 fi
302fi
303
304configdir="unix"
8a19b35a 305
5436fc65 306if test "${enable_gdbtk}" = "yes"; then
0fe1522a 307
047465fd 308 CY_AC_PATH_TCLCONFIG
0cf433d9
ILT
309 if test -z "${no_tcl}"; then
310 CY_AC_LOAD_TCLCONFIG
311 CY_AC_PATH_TKCONFIG
047465fd 312
0cf433d9
ILT
313 # If $no_tk is nonempty, then we can't do Tk, and there is no
314 # point to doing Tcl.
315 if test -z "${no_tk}"; then
316 CY_AC_LOAD_TKCONFIG
317 CY_AC_PATH_TCLH
318 CY_AC_PATH_TKH
2476848a
MH
319 CY_AC_PATH_ITCLH
320 CY_AC_PATH_TIX
047465fd 321
6bc5b2fa 322 # now look for tix library stuff
1154b47a 323 TIXVERSION=4.1.8.0
6bc5b2fa
MH
324 . ${ac_cv_c_tclconfig}/tclConfig.sh
325 case "${host}" in
326 *-*-cygwin32*)
f1f6dd9c 327 tixdir=../tix/win/tcl8.0
6bc5b2fa
MH
328 ;;
329 *)
1154b47a 330 tixdir=../tix/unix/tk8.0
6bc5b2fa
MH
331 ;;
332 esac
333 if test "${TCL_LIB_VERSIONS_OK}" = "ok"; then
334 TIXLIB="-L${tixdir} -ltix${TIXVERSION}"
335 else
336 TIXLIB="-L${tixdir} -ltix`echo ${TIXVERSION} | tr -d .`"
337 fi
338
0cf433d9 339 ENABLE_GDBTK=1
1a57cd09 340
6c310da8 341 # Include some libraries that Tcl and Tk want.
2476848a
MH
342 if test "${enable_ide}" = "yes"; then
343 TCL_LIBS='$(IDE) $(ITCL) $(TIX) $(TK) $(TCL) $(X11_LDFLAGS) $(X11_LIBS)'
344 else
345 TCL_LIBS='$(ITCL) $(TIX) $(TK) $(TCL) $(X11_LDFLAGS) $(X11_LIBS)'
346 fi
46964086
TT
347 # Yes, the ordering seems wrong here. But it isn't.
348 # TK_LIBS is the list of libraries that need to be linked
349 # after Tcl/Tk.
350 LIBS="${LIBS} ${TCL_LIBS} ${TK_LIBS}"
6c310da8 351 CONFIG_OBS="${CONFIG_OBS} gdbtk.o"
9b119644
ILT
352
353 if test x$gdb_cv_os_cygwin32 = xyes; then
354 WIN32LIBS="${WIN32LIBS} -luser32"
355 WIN32LDAPP="-Wl,--subsystem,windows"
356 fi
0cf433d9 357 fi
a2b63bbd 358 fi
5436fc65 359fi
a2b63bbd 360
5436fc65 361AC_SUBST(ENABLE_GDBTK)
9c0bc1da 362AC_SUBST(X_CFLAGS)
a2b63bbd
JM
363AC_SUBST(X_LDFLAGS)
364AC_SUBST(X_LIBS)
6bc5b2fa 365AC_SUBST(TIXLIB)
5436fc65
C
366# end-sanitize-gdbtk
367
368AC_SUBST(ENABLE_CFLAGS)
6c310da8
SG
369
370AC_SUBST(CONFIG_OBS)
6ec7e4d3 371
1d5eb137
FF
372# Begin stuff to support --enable-shared
373AC_ARG_ENABLE(shared,
374[ --enable-shared use shared libraries],
375[case "${enableval}" in
376 yes) shared=true ;;
377 no) shared=false ;;
378 *) shared=true ;;
379esac])dnl
380
381HLDFLAGS=
382HLDENV=
383# If we have shared libraries, try to set rpath reasonably.
384if test "${shared}" = "true"; then
385 case "${host}" in
386 *-*-hpux*)
387 HLDFLAGS='-Wl,+s,+b,$(libdir)'
388 ;;
389 *-*-irix5* | *-*-irix6*)
390 HLDFLAGS='-Wl,-rpath,$(libdir)'
391 ;;
392 *-*-linux*aout*)
393 ;;
8ddf07a2 394 *-*-linux* | *-pc-linux-gnu)
1d5eb137
FF
395 HLDFLAGS='-Wl,-rpath,$(libdir)'
396 ;;
397 *-*-solaris*)
398 HLDFLAGS='-R $(libdir)'
399 ;;
400 *-*-sysv4*)
401 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;'
402 ;;
403 esac
404fi
405
406# On SunOS, if the linker supports the -rpath option, use it to
407# prevent ../bfd and ../opcodes from being included in the run time
408# search path.
409case "${host}" in
410 *-*-sunos*)
411 echo 'main () { }' > conftest.c
412 ${CC} -o conftest -Wl,-rpath= conftest.c >/dev/null 2>conftest.t
413 if grep 'unrecognized' conftest.t >/dev/null 2>&1; then
414 :
415 elif grep 'No such file' conftest.t >/dev/null 2>&1; then
416 :
417 elif grep 'do not mix' conftest.t >/dev/null 2>&1; then
418 :
074d813d
PS
419 elif grep 'some text already loaded' conftest.t >/dev/null 2>&1; then
420 :
1d5eb137
FF
421 elif test "${shared}" = "true"; then
422 HLDFLAGS='-Wl,-rpath=$(libdir)'
423 else
424 HLDFLAGS='-Wl,-rpath='
425 fi
426 rm -f conftest.t conftest.c conftest
427 ;;
428esac
429AC_SUBST(HLDFLAGS)
430AC_SUBST(HLDENV)
431# End stuff to support --enable-shared
432
9c0bc1da
DE
433# target_subdir is used by the testsuite to find the target libraries.
434target_subdir=
435if test "${host}" != "${target}"; then
436 target_subdir="${target_alias}/"
437fi
438AC_SUBST(target_subdir)
bc028766 439
5f107900 440frags=
5436fc65
C
441host_makefile_frag=${srcdir}/config/${gdb_host_cpu}/${gdb_host}.mh
442if test ! -f ${host_makefile_frag}; then
443AC_MSG_ERROR("*** Gdb does not support host ${host}")
912e0732 444fi
5f107900 445frags="$frags $host_makefile_frag"
912e0732 446
5436fc65
C
447target_makefile_frag=${srcdir}/config/${gdb_target_cpu}/${gdb_target}.mt
448if test ! -f ${target_makefile_frag}; then
449AC_MSG_ERROR("*** Gdb does not support target ${target}")
912e0732 450fi
5f107900 451frags="$frags $target_makefile_frag"
912e0732 452
5436fc65
C
453AC_SUBST_FILE(host_makefile_frag)
454AC_SUBST_FILE(target_makefile_frag)
5f107900 455AC_SUBST(frags)
5436fc65 456
094fd4ae
C
457changequote(,)dnl
458hostfile=`sed -n '
459s/XM_FILE[ ]*=[ ]*\([^ ]*\)/\1/p
460' ${host_makefile_frag}`
5436fc65 461
094fd4ae
C
462targetfile=`sed -n '
463s/TM_FILE[ ]*=[ ]*\([^ ]*\)/\1/p
464' ${target_makefile_frag}`
79f68f0f
DZ
465
466# these really aren't orthogonal true/false values of the same condition,
467# but shells are slow enough that I like to reuse the test conditions
468# whenever possible
5436fc65 469if test "${target}" = "${host}"; then
094fd4ae
C
470nativefile=`sed -n '
471s/NAT_FILE[ ]*=[ ]*\([^ ]*\)/\1/p
472' ${host_makefile_frag}`
33ef0f93 473# else
5436fc65 474# GDBserver is only useful in a "native" enviroment
33ef0f93 475# configdirs=`echo $configdirs | sed 's/gdbserver//'`
d40309c7 476fi
094fd4ae 477changequote([,])
d40309c7 478
d40309c7 479# If hostfile (XM_FILE) and/or targetfile (TM_FILE) and/or nativefile
6573c898 480# (NAT_FILE) is not set in config/*/*.m[ht] files, we don't make the
d40309c7
JG
481# corresponding links. But we have to remove the xm.h files and tm.h
482# files anyway, e.g. when switching from "configure host" to
483# "configure none".
484
bdf3621b
JG
485files=
486links=
dc0c3f64 487rm -f xm.h
5436fc65
C
488if test "${hostfile}" != ""; then
489files="${files} config/${gdb_host_cpu}/${hostfile}"
490links="${links} xm.h"
bdf3621b 491fi
dc0c3f64 492rm -f tm.h
5436fc65
C
493if test "${targetfile}" != ""; then
494files="${files} config/${gdb_target_cpu}/${targetfile}"
495links="${links} tm.h"
bdf3621b 496fi
1a0edbc7 497rm -f nm.h
5436fc65
C
498if test "${nativefile}" != ""; then
499files="${files} config/${gdb_host_cpu}/${nativefile}"
500links="${links} nm.h"
c9c23412 501else
5436fc65
C
502# A cross-only configuration.
503files="${files} config/nm-empty.h"
504links="${links} nm.h"
d40309c7 505fi
d3d75ec9 506# start-sanitize-gdbtk
99174711 507AC_PROG_LN_S
5436fc65 508# Make it possible to use the GUI without doing a full install
99174711
JM
509if test "${enable_gdbtk}" = "yes" -a ! -d gdbtcl ; then
510 if test "$LN_S" = "ln -s" -a ! -f gdbtcl ; then
511 echo linking $srcdir/gdbtcl to gdbtcl
512 $LN_S $srcdir/gdbtcl gdbtcl
513 else
514 echo Warning: Unable to link $srcdir/gdbtcl to gdbtcl. You will need to do a
515 echo " " make install before you are able to run the GUI.
516 fi
754e5da2 517fi
d3d75ec9 518# end-sanitize-gdbtk
754e5da2 519
5436fc65
C
520AC_LINK_FILES($files, $links)
521
522AC_CONFIG_SUBDIRS($configdirs)
0cb7d01d 523AC_OUTPUT(Makefile .gdbinit:gdbinit.in,
5436fc65
C
524[
525dnl Autoconf doesn't provide a mechanism for modifying definitions
526dnl provided by makefile fragments.
527dnl
528if test "${nativefile}" = ""; then
7bd1f0c5 529sed -e '/^NATDEPFILES[[ ]]*=[[ ]]*/s//# NATDEPFILES=/' \
5436fc65
C
530 < Makefile > Makefile.tem
531mv -f Makefile.tem Makefile
33bc979d
SS
532fi
533
5436fc65 534changequote(,)dnl
94d4b713
JK
535sed -e '/^TM_FILE[ ]*=/s,^TM_FILE[ ]*=[ ]*,&config/'"${gdb_target_cpu}"'/,
536/^XM_FILE[ ]*=/s,^XM_FILE[ ]*=[ ]*,&config/'"${gdb_host_cpu}"'/,
537/^NAT_FILE[ ]*=/s,^NAT_FILE[ ]*=[ ]*,&config/'"${gdb_host_cpu}"'/,' <Makefile >Makefile.tmp
538mv -f Makefile.tmp Makefile
5436fc65
C
539changequote([,])dnl
540
31520669 541case x$CONFIG_HEADERS in
18ea4416 542xconfig.h:config.in)
31520669
FF
543echo > stamp-h ;;
544esac
0a5a1821
C
545],
546[
547gdb_host_cpu=$gdb_host_cpu
548gdb_target_cpu=$gdb_target_cpu
549nativefile=$nativefile
5436fc65 550])
5e711e7f
PS
551
552exit 0
b7f3b6d5 553
This page took 0.291503 seconds and 4 git commands to generate.