emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Building Emacs-cvs on Cygwin


From: Angelo Graziosi
Subject: Re: Building Emacs-cvs on Cygwin
Date: Sat, 23 Sep 2006 12:33:23 +0200 (MET DST)


On Thu, 21 Sep 2006, Eli Zaretskii wrote:

> > Date: Wed, 20 Sep 2006 11:05:54 +0200 (MET DST)
> > From: Angelo Graziosi <address@hidden>
> > > > This GDB was configured as "i686-pc-cygwin"...(no debugging symbols 
> > > > found)
> > >                                                 
> > > ^^^^^^^^^^^^^^^^^^^^^^^^^^^
> > 
> > I think this refers to GDB
> 
> No, I don't think so.
> 


On Wed, 20 Sep 2006 , Richard Stallman wrote:

> It refers to the program you are debugging.  GDB has already tried to
> read that executable, and failed.  
>
>    /tmp/emacs/src/.gdbinit:1089: Error in sourced command file:
>    No struct type named Lisp_Symbol.
>
> Further proof of the same problem.


Considere the following examples:

---------------------------------------------------------
$ cat hello.c
#include <stdio.h>

int main()
{
    printf("Hello, World!");
    return 0;
}

$ gcc -g hello.c -o hello
     ^^^^^

$ gdb ./hello.exe
GNU gdb 6.5.50.20060706-cvs (cygwin-special)
Copyright (C) 2006 Free Software Foundation, Inc.
GDB is free software, covered by the GNU General Public License, and you
ar
welcome to change it and/or distribute copies of it under certain
condition
Type "show copying" to see the conditions.
There is absolutely no warranty for GDB.  Type "show warranty" for
details.
This GDB was configured as "i686-pc-cygwin"...(no debugging symbols found)
                                              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
(gdb)
---------------------------------------------------------

---------------------------------------------------------
$ cat hello.F
      program hello
      implicit none
      write(*,*) 'Hello!'
      end

$ g77 -g hello.F -o hello
     ^^^^^

$ gdb ./hello.exe
GNU gdb 6.5.50.20060706-cvs (cygwin-special)
Copyright (C) 2006 Free Software Foundation, Inc.
GDB is free software, covered by the GNU General Public License, and you
are
welcome to change it and/or distribute copies of it under certain
conditions.
Type "show copying" to see the conditions.
There is absolutely no warranty for GDB.  Type "show warranty" for
details.
This GDB was configured as "i686-pc-cygwin"...(no debugging symbols found)
                                              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
(gdb)
---------------------------------------------------------


Or I have missed something or there is something wrong in the above if
yours conclusions are correct.


Cheers,

   Angelo.





reply via email to

[Prev in Thread] Current Thread [Next in Thread]