From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stephen Smith To: Kevin Buettner Cc: DJ Delorie , gdb@sourceware.cygnus.com Subject: Re: GDB for PE/Cywin target won't build on linux Date: Mon, 16 Jul 2001 14:27:00 -0000 Message-id: <3B535C6B.2B99791C@home.com> References: <3B4CD85B.C35AE862@home.com> <3B4F4AA0.E5C079C8@home.com> <200107132140.RAA22631@greed.delorie.com> <3B4F7039.6B441974@home.com> <3B53374C.98CC3BFB@home.com> <1010716193231.ZM31023@ocotillo.lan> X-SW-Source: 2001-07/msg00187.html Once I added the the following patch to configure.tgt everything worked. Thanks for your help. I will now be working on submitting the patches (for this and the re-submit from before). [ssmith@az75-linuxbox gdb]$ diff -c -w -b -B configure.tgt.orig configure.tgt *** configure.tgt.orig Tue Apr 17 14:20:48 2001 --- configure.tgt Mon Jul 16 14:00:00 2001 *************** *** 122,127 **** --- 122,128 ---- configdirs="${configdirs} nlm" ;; i[3456]86-*-osf1mk*) gdb_target=i386mk ;; i[3456]86-*-cygwin*) gdb_target=cygwin ;; + i[3456]86-*-pe*) gdb_target=embed ;; i[3456]86-*-vxworks*) gdb_target=vxworks ;; i960-*-bout*) gdb_target=vxworks960 ;; Kevin Buettner wrote: > On Jul 16, 11:49am, Stephen Smith wrote: > For your purposes, I think it'd be better to just use ``gdb_target=embed''. > You'll avoid the shared library nightmares that way. If you find that > you need some sort of shared library support, you'll have to implement > it separately. (This'll likely mean creating a new *.mt file, a new > tm-*.h file, and a new solib-*.c file which'll have the shared library > support that you need.) > > Kevin