X-Authentication-Warning: delorie.com: mail set sender to djgpp-bounces using -f X-Recipient: djgpp AT delorie DOT com X-Authenticated: #27081556 X-Provags-ID: V01U2FsdGVkX18SHxshhooS67ERtEohP41UUmBXw0uaHmp7bixp2s weEAbh4afvaOOp From: Juan Manuel Guerrero To: Eli Zaretskii Subject: Re: ANNOUNCE: DJGPP port of GNU debugger (GDB) 7.2 uploaded. Date: Sat, 29 Jan 2011 00:55:54 +0100 User-Agent: KMail/1.9.10 Cc: djgpp AT delorie DOT com References: <201101281852 DOT p0SIqF5e019856 AT delorie DOT com> <831v3wj1na DOT fsf AT gnu DOT org> In-Reply-To: <831v3wj1na.fsf@gnu.org> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <201101290055.54401.juan.guerrero@gmx.de> X-Y-GMX-Trusted: 0 Am Freitag, 28. Januar 2011 schrieb Eli Zaretskii: > > From: Juan Manuel Guerrero > > Date: Fri, 28 Jan 2011 19:48:57 +0100 > > > > This is a port of GNU debugger (GDB) 7.2 to MSDOS/DJGPP. > > Thanks a lot! > > > - The original distribution comes with DJGPP support files. I have not used > > them so I do not know if the DJGPP support is really up to date. > > So how did you build GDB, if you didn't use the djconfig.sh? I have simply unpacked the sources and started the following shell script: ############################################# export ac_cv_func_fork=no export ac_cv_func_mkfifo=no export ac_cv_func_mknod=no export ac_cv_func_mmap=no export ac_cv_func_pipe=no export ac_cv_func_vfork=no # configuring the TUI support version. ../configure --disable-dependency-tracking --disable-nls --with-mpc --with-mpfr --with-gmp --with-curses --enable-tui # configuring without TUI support. # ../configure --disable-dependency-tracking --disable-nls --with-mpc --with-mpfr --with-gmp --without-curses --disable-tui make ############################################# It worked for me. I have not cared about SFN issues. I hope I have not missed something. The above script is in /gdb/djgpp. I was able to step through C code programs with all produced versions. I do not know if remote debugging or some other special features work. Regards, Juan M. Guerrero