public inbox for insight@sourceware.org
 help / color / mirror / Atom feed
* RE: Buil problem
@ 2000-11-20 19:09 Fabrice Gautier
  0 siblings, 0 replies; 10+ messages in thread
From: Fabrice Gautier @ 2000-11-20 19:09 UTC (permalink / raw)
  To: 'insight@sources.redhat.com'
  Cc: 'Fernando Nasser', GDB (E-mail)

> -----Original Message-----
> From: Christopher Faylor [ mailto:cgf@redhat.com ]
> Subject: Re: Buil problem
> 
> >
> >But i still have a problem, insight won't start in 
> >background. If you do 
> >"i386-elf-gdb &"  the progran stop and i can have it back with "fg". 
> 
> I believe that this has always been a problem with insight.  You can't
> start it in the background.

I believe (no: i'm sure) I did it many times with 5.0 + patches from eCos
website.

I didn't applied the from-the-eCos-website patches to my recent build cause
it seems that they were already applied in the cvs/latest snapshot but maybe
I overlooked something.


-- 
Fabrice Gautier
fabrice_gautier@sdesigns.com 

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: Buil problem
  2000-11-20 18:56 ` Christopher Faylor
@ 2000-11-20 19:10   ` Fernando Nasser
  0 siblings, 0 replies; 10+ messages in thread
From: Fernando Nasser @ 2000-11-20 19:10 UTC (permalink / raw)
  To: insight; +Cc: Fabrice Gautier, GDB (E-mail)

Christopher Faylor wrote:
> 
> On Mon, Nov 20, 2000 at 06:21:24PM -0800, Fabrice Gautier wrote:
> >> From: Fernando Nasser [ mailto:fnasser@cygnus.com ]
> >>
> >> This fix is already in the current sources.  It was broken
> >> for a few hours
> >> and it is very unfortunate you've got it during that window of time.
> >
> >In fact it came from the latest snapshot... Unfortunate the snapshot was
> >taken during that window of time...
> >
> >But i still have a problem, insight won't start in background. If you do
> >"i386-elf-gdb &"  the progran stop and i can have it back with "fg".
> 
> I believe that this has always been a problem with insight.  You can't
> start it in the background.
> 

Yes, it is a known problem.

-- 
Fernando Nasser
Red Hat Canada Ltd.                     E-Mail:  fnasser@redhat.com
2323 Yonge Street, Suite #300
Toronto, Ontario   M4P 2C9

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: Buil problem
  2000-11-20 18:22 Fabrice Gautier
@ 2000-11-20 18:56 ` Christopher Faylor
  2000-11-20 19:10   ` Fernando Nasser
  0 siblings, 1 reply; 10+ messages in thread
From: Christopher Faylor @ 2000-11-20 18:56 UTC (permalink / raw)
  To: Fabrice Gautier
  Cc: 'Fernando Nasser', 'insight@sources.redhat.com',
	GDB (E-mail)

On Mon, Nov 20, 2000 at 06:21:24PM -0800, Fabrice Gautier wrote:
>> From: Fernando Nasser [ mailto:fnasser@cygnus.com ]
>> 
>> This fix is already in the current sources.  It was broken 
>> for a few hours
>> and it is very unfortunate you've got it during that window of time.
>
>In fact it came from the latest snapshot... Unfortunate the snapshot was
>taken during that window of time...
>
>But i still have a problem, insight won't start in background. If you do 
>"i386-elf-gdb &"  the progran stop and i can have it back with "fg". 

I believe that this has always been a problem with insight.  You can't
start it in the background.

cgf

^ permalink raw reply	[flat|nested] 10+ messages in thread

* RE: Buil problem
@ 2000-11-20 18:22 Fabrice Gautier
  2000-11-20 18:56 ` Christopher Faylor
  0 siblings, 1 reply; 10+ messages in thread
From: Fabrice Gautier @ 2000-11-20 18:22 UTC (permalink / raw)
  To: 'Fernando Nasser'
  Cc: 'insight@sources.redhat.com', GDB (E-mail)

> -----Original Message-----
> From: Fernando Nasser [ mailto:fnasser@cygnus.com ]
> Sent: Monday, November 20, 2000 4:39 PM
> To: Fabrice Gautier
> Cc: 'insight@sources.redhat.com'; GDB (E-mail)
> Subject: Re: Buil problem
> 
> 
> This fix is already in the current sources.  It was broken 
> for a few hours
> and it is very unfortunate you've got it during that window of time.

In fact it came from the latest snapshot... Unfortunate the snapshot was
taken during that window of time...

But i still have a problem, insight won't start in background. If you do 
"i386-elf-gdb &"  the progran stop and i can have it back with "fg". 

Thanks

-- 
Fabrice Gautier
fabrice_gautier@sdesigns.com 

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: Buil problem
  2000-11-20 16:12 Fabrice Gautier
@ 2000-11-20 16:39 ` Fernando Nasser
  0 siblings, 0 replies; 10+ messages in thread
From: Fernando Nasser @ 2000-11-20 16:39 UTC (permalink / raw)
  To: Fabrice Gautier; +Cc: 'insight@sources.redhat.com', GDB (E-mail)

This fix is already in the current sources.  It was broken for a few hours
and it is very unfortunate you've got it during that window of time.

I inadvertently broke this when splitting a file so at least you have
someone to blame ;-)

BTW, when using the latest sources from cvs and encountering a build problem,
always try to do a "cvs update".  Any glitch like this is normally fixed
quickly.

Sorry about all the trouble.

Fernando



Fabrice Gautier wrote:
> 
> Hi,
> 
> I think i found why it failed. The following patch seems to have a good
> effect:
> 
> --- gdb/linespec.c~ Fri Nov 10 15:02:56 2000
> +++ gdb/linespec.c  Mon Nov 20 15:13:43 2000
> @@ -37,7 +37,7 @@
> 
>  extern char *operator_chars (char *, char **);
> 
> -extern char *no_symtab_msg;
> +extern char no_symtab_msg[];
> 
>  /* Prototypes for local functions */
> 
> The no_symtab_msg is defined as char no_symtab_msg[] in an other file, and
> not as
> char *no_symtab_msg.
> 
> I think there might be a few other place where this mistake could have been
> made but i didn't saw any around that one.
> 
> By the way this seems more like a gdb thing than a insight thing, but it was
> somehow triggered when using the gui.
> 
> Thanks
> 
> > -----Original Message-----
> > From: Fabrice Gautier [ mailto:Fabrice_Gautier@sdesigns.com ]
> > Sent: Monday, November 20, 2000 2:19 PM
> > To: 'insight@sources.redhat.com'
> > Subject: RE: Buil problem
> >
> >
> > Hi,
> >
> > Attached is a call stack I obtained with gdb,
> >
> > If it helps find the problem.
> >
> > Thanks
> >
> > > -----Original Message-----
> > > From: Fabrice Gautier [ mailto:Fabrice_Gautier@sdesigns.com ]
> > > Subject: RE: Buil problem
> > >
> > >
> > > Using the latest snapshot i didn't have any problem building.
> > > But insight
> > > still crash unless I use -nw.
> > >
> > > Thanks
> >
> >
> >

-- 
Fernando Nasser
Red Hat Canada Ltd.                     E-Mail:  fnasser@redhat.com
2323 Yonge Street, Suite #300
Toronto, Ontario   M4P 2C9

^ permalink raw reply	[flat|nested] 10+ messages in thread

* RE: Buil problem
@ 2000-11-20 16:12 Fabrice Gautier
  2000-11-20 16:39 ` Fernando Nasser
  0 siblings, 1 reply; 10+ messages in thread
From: Fabrice Gautier @ 2000-11-20 16:12 UTC (permalink / raw)
  To: 'insight@sources.redhat.com'; +Cc: GDB (E-mail)

Hi,

I think i found why it failed. The following patch seems to have a good
effect:

--- gdb/linespec.c~ Fri Nov 10 15:02:56 2000
+++ gdb/linespec.c  Mon Nov 20 15:13:43 2000
@@ -37,7 +37,7 @@

 extern char *operator_chars (char *, char **);

-extern char *no_symtab_msg;
+extern char no_symtab_msg[];

 /* Prototypes for local functions */

The no_symtab_msg is defined as char no_symtab_msg[] in an other file, and
not as 
char *no_symtab_msg.

I think there might be a few other place where this mistake could have been
made but i didn't saw any around that one.

By the way this seems more like a gdb thing than a insight thing, but it was
somehow triggered when using the gui.

Thanks

> -----Original Message-----
> From: Fabrice Gautier [ mailto:Fabrice_Gautier@sdesigns.com ]
> Sent: Monday, November 20, 2000 2:19 PM
> To: 'insight@sources.redhat.com'
> Subject: RE: Buil problem
> 
> 
> Hi,
> 
> Attached is a call stack I obtained with gdb,
> 
> If it helps find the problem.
> 
> Thanks
> 
> > -----Original Message-----
> > From: Fabrice Gautier [ mailto:Fabrice_Gautier@sdesigns.com ]
> > Subject: RE: Buil problem
> > 
> > 
> > Using the latest snapshot i didn't have any problem building. 
> > But insight
> > still crash unless I use -nw.
> > 
> > Thanks
>  
> 
> 

^ permalink raw reply	[flat|nested] 10+ messages in thread

* RE: Buil problem
@ 2000-11-20 14:19 Fabrice Gautier
  0 siblings, 0 replies; 10+ messages in thread
From: Fabrice Gautier @ 2000-11-20 14:19 UTC (permalink / raw)
  To: 'insight@sources.redhat.com'

[-- Attachment #1: Type: text/plain, Size: 344 bytes --]

Hi,

Attached is a call stack I obtained with gdb,

If it helps find the problem.

Thanks

> -----Original Message-----
> From: Fabrice Gautier [ mailto:Fabrice_Gautier@sdesigns.com ]
> Subject: RE: Buil problem
> 
> 
> Using the latest snapshot i didn't have any problem building. 
> But insight
> still crash unless I use -nw.
> 
> Thanks
 


[-- Attachment #2: bt.insight --]
[-- Type: text/plain, Size: 8569 bytes --]

(gdb) bt
#0  0x558c01 in int_vasprintf (result=0x29791a0, format=0x73206f4e <Address 0x73206f4e out of bounds>, args=0x2979174)
    at /e/fabrice/src/insight-snapshot/insight+dejagnu-20001118/libiberty/vasprintf.c:56
#1  0x558ec2 in vasprintf (result=0x29791a0, format=0x73206f4e <Address 0x73206f4e out of bounds>, args=0x2979230)
    at /e/fabrice/src/insight-snapshot/insight+dejagnu-20001118/libiberty/vasprintf.c:141
#2  0x48b197 in vfprintf_maybe_filtered (stream=0xa010f20, format=0x73206f4e <Address 0x73206f4e out of bounds>, args=0x2979230, filter=1)
    at /e/fabrice/src/insight-snapshot/insight+dejagnu-20001118/gdb/utils.c:1955
#3  0x48b211 in vfprintf_filtered (stream=0xa010f20, format=0x73206f4e <Address 0x73206f4e out of bounds>, args=0x2979230)
    at /e/fabrice/src/insight-snapshot/insight+dejagnu-20001118/gdb/utils.c:1970
#4  0x4897ed in verror (string=0x73206f4e <Address 0x73206f4e out of bounds>, args=0x2979230)
    at /e/fabrice/src/insight-snapshot/insight+dejagnu-20001118/gdb/utils.c:621
#5  0x48985a in error ()
    at /e/fabrice/src/insight-snapshot/insight+dejagnu-20001118/gdb/utils.c:636
#6  0x42a2b1 in decode_line_1 (argptr=0x297935c, funfirstline=1, default_symtab=0x0, default_line=0, canonical=0x0)
    at /e/fabrice/src/insight-snapshot/insight+dejagnu-20001118/gdb/linespec.c:1262
#7  0x4211e6 in decode_line_spec (string=0xa312807 "", funfirstline=1)
    at /e/fabrice/src/insight-snapshot/insight+dejagnu-20001118/gdb/symtab.c:3344
#8  0x45d03b in gdb_loc (clientData=0x45cf90, interp=0xa027b50, objc=2, objv=0xa028854)
    at /e/fabrice/src/insight-snapshot/insight+dejagnu-20001118/gdb/gdbtk/generic/gdbtk-cmds.c:3166
#9  0x459a6f in wrapped_call (opaque_args=0x2979544)
    at /e/fabrice/src/insight-snapshot/insight+dejagnu-20001118/gdb/gdbtk/generic/gdbtk-cmds.c:536
#10 0x4823ee in catch_errors (func=0x459a54 <wrapped_call>, args=0x2979544, errstring=0x459918 "", mask=6)
    at /e/fabrice/src/insight-snapshot/insight+dejagnu-20001118/gdb/top.c:607
#11 0x45998a in call_wrapper (clientData=0x45cf90, interp=0xa027b50, objc=2, objv=0xa028854)
    at /e/fabrice/src/insight-snapshot/insight+dejagnu-20001118/gdb/gdbtk/generic/gdbtk-cmds.c:474
#12 0x66022060 in TclExecuteByteCode (interp=0xa027b50, codePtr=0xa313400)
    at /e/fabrice/src/insight-snapshot/insight+dejagnu-20001118/tcl/win/../generic/tclExecute.c:955
#13 0x66004f58 in Tcl_EvalObj (interp=0xa027b50, objPtr=0xa12fb68)
    at /e/fabrice/src/insight-snapshot/insight+dejagnu-20001118/tcl/win/../generic/tclBasic.c:2645
#14 0x66045856 in TclObjInterpProc (clientData=0xa09d878, interp=0xa027b50, objc=1, objv=0xa02884c)
    at /e/fabrice/src/insight-snapshot/insight+dejagnu-20001118/tcl/win/../generic/tclProc.c:996
#15 0x66022060 in TclExecuteByteCode (interp=0xa027b50, codePtr=0xa178b88)
    at /e/fabrice/src/insight-snapshot/insight+dejagnu-20001118/tcl/win/../generic/tclExecute.c:955
#16 0x66004f58 in Tcl_EvalObj (interp=0xa027b50, objPtr=0xa1ab408)
    at /e/fabrice/src/insight-snapshot/insight+dejagnu-20001118/tcl/win/../generic/tclBasic.c:2645
#17 0x66709b1d in Itcl_EvalMemberCode (interp=0xa027b50, mfunc=0xa186908, member=0xa186328, contextObj=0xa12b2a8, objc=1, objv=0xa028848)
    at /e/fabrice/src/insight-snapshot/insight+dejagnu-20001118/itcl/itcl/generic/itcl_methods.c:1029
#18 0x6670a519 in Itcl_ExecMethod (clientData=0xa186908, interp=0xa027b50, objc=1, objv=0xa028848)
    at /e/fabrice/src/insight-snapshot/insight+dejagnu-20001118/itcl/itcl/generic/itcl_methods.c:1546
#19 0x66022060 in TclExecuteByteCode (interp=0xa027b50, codePtr=0xa180a58)
    at /e/fabrice/src/insight-snapshot/insight+dejagnu-20001118/tcl/win/../generic/tclExecute.c:955
#20 0x66004f58 in Tcl_EvalObj (interp=0xa027b50, objPtr=0xa1ab438)
    at /e/fabrice/src/insight-snapshot/insight+dejagnu-20001118/tcl/win/../generic/tclBasic.c:2645
#21 0x66709b1d in Itcl_EvalMemberCode (interp=0xa027b50, mfunc=0xa182f10, member=0xa182dc0, contextObj=0xa12b2a8, objc=1, objv=0xa182a98)
    at /e/fabrice/src/insight-snapshot/insight+dejagnu-20001118/itcl/itcl/generic/itcl_methods.c:1029
#22 0x6670b5e2 in Itcl_InvokeMethodIfExists (interp=0xa027b50, name=0x6670bb78 "constructor", contextClass=0xa179618, contextObj=0xa12b2a8, objc=0, objv=0xa028848)
    at /e/fabrice/src/insight-snapshot/insight+dejagnu-20001118/itcl/itcl/generic/itcl_methods.c:2441
#23 0x6670bf24 in Itcl_CreateObject (interp=0xa027b50, name=0xa186508 ".srcwin0.srcwin", cdefn=0xa179618, objc=0, objv=0xa028848, roPtr=0x297b0d0)
    at /e/fabrice/src/insight-snapshot/insight+dejagnu-20001118/itcl/itcl/generic/itcl_objects.c:216
#24 0x66704106 in Itcl_HandleClass (clientData=0xa179618, interp=0xa027b50, objc=2, objv=0xa028840)
    at /e/fabrice/src/insight-snapshot/insight+dejagnu-20001118/itcl/itcl/generic/itcl_class.c:877
#25 0x66022060 in TclExecuteByteCode (interp=0xa027b50, codePtr=0xa16ba90)
    at /e/fabrice/src/insight-snapshot/insight+dejagnu-20001118/tcl/win/../generic/tclExecute.c:955
#26 0x66004f58 in Tcl_EvalObj (interp=0xa027b50, objPtr=0xa1dbf90)
    at /e/fabrice/src/insight-snapshot/insight+dejagnu-20001118/tcl/win/../generic/tclBasic.c:2645
#27 0x6604511c in Tcl_UplevelObjCmd (dummy=0x0, interp=0xa027b50, objc=3, objv=0xa028834)
    at /e/fabrice/src/insight-snapshot/insight+dejagnu-20001118/tcl/win/../generic/tclProc.c:609
#28 0x66022060 in TclExecuteByteCode (interp=0xa027b50, codePtr=0xa070850)
    at /e/fabrice/src/insight-snapshot/insight+dejagnu-20001118/tcl/win/../generic/tclExecute.c:955
#29 0x66004f58 in Tcl_EvalObj (interp=0xa027b50, objPtr=0xa0428e8)
    at /e/fabrice/src/insight-snapshot/insight+dejagnu-20001118/tcl/win/../generic/tclBasic.c:2645
#30 0x66045856 in TclObjInterpProc (clientData=0xa0334e0, interp=0xa027b50, objc=3, objv=0xa028828)
    at /e/fabrice/src/insight-snapshot/insight+dejagnu-20001118/tcl/win/../generic/tclProc.c:996
#31 0x66022060 in TclExecuteByteCode (interp=0xa027b50, codePtr=0xa178518)
    at /e/fabrice/src/insight-snapshot/insight+dejagnu-20001118/tcl/win/../generic/tclExecute.c:955
#32 0x66004f58 in Tcl_EvalObj (interp=0xa027b50, objPtr=0xa1dbf30)
    at /e/fabrice/src/insight-snapshot/insight+dejagnu-20001118/tcl/win/../generic/tclBasic.c:2645
#33 0x66008c78 in Tcl_EvalObjCmd (dummy=0x0, interp=0xa027b50, objc=3, objv=0xa02881c)
    at /e/fabrice/src/insight-snapshot/insight+dejagnu-20001118/tcl/win/../generic/tclCmdAH.c:492
#34 0x66022060 in TclExecuteByteCode (interp=0xa027b50, codePtr=0xa178428)
    at /e/fabrice/src/insight-snapshot/insight+dejagnu-20001118/tcl/win/../generic/tclExecute.c:955
#35 0x66004f58 in Tcl_EvalObj (interp=0xa027b50, objPtr=0xa1dbed0)
    at /e/fabrice/src/insight-snapshot/insight+dejagnu-20001118/tcl/win/../generic/tclBasic.c:2645
#36 0x66045139 in Tcl_UplevelObjCmd (dummy=0x0, interp=0xa027b50, objc=6, objv=0xa028804)
    at /e/fabrice/src/insight-snapshot/insight+dejagnu-20001118/tcl/win/../generic/tclProc.c:612
#37 0x66022060 in TclExecuteByteCode (interp=0xa027b50, codePtr=0xa170548)
    at /e/fabrice/src/insight-snapshot/insight+dejagnu-20001118/tcl/win/../generic/tclExecute.c:955
#38 0x66004f58 in Tcl_EvalObj (interp=0xa027b50, objPtr=0xa136fa0)
    at /e/fabrice/src/insight-snapshot/insight+dejagnu-20001118/tcl/win/../generic/tclBasic.c:2645
#39 0x66709b1d in Itcl_EvalMemberCode (interp=0xa027b50, mfunc=0xa193368, member=0xa1988f0, contextObj=0x0, objc=2, objv=0xa0287fc)
    at /e/fabrice/src/insight-snapshot/insight+dejagnu-20001118/itcl/itcl/generic/itcl_methods.c:1029
#40 0x6670a5de in Itcl_ExecProc (clientData=0xa193368, interp=0xa027b50, objc=2, objv=0xa0287fc)
    at /e/fabrice/src/insight-snapshot/insight+dejagnu-20001118/itcl/itcl/generic/itcl_methods.c:1605
#41 0x66022060 in TclExecuteByteCode (interp=0xa027b50, codePtr=0xa075158)
    at /e/fabrice/src/insight-snapshot/insight+dejagnu-20001118/tcl/win/../generic/tclExecute.c:955
#42 0x66004f58 in Tcl_EvalObj (interp=0xa027b50, objPtr=0xa08ae08)
    at /e/fabrice/src/insight-snapshot/insight+dejagnu-20001118/tcl/win/../generic/tclBasic.c:2645
#43 0x66008c78 in Tcl_EvalObjCmd (dummy=0x0, interp=0xa027b50, objc=4, objv=0xa0287ec)
    at /e/fabrice/src/insight-snapshot/insight+dejagnu-20001118/tcl/win/../generic/tclCmdAH.c:492
#44 0x66022060 in TclExecuteByteCode (interp=0xa027b50, codePtr=0xa121a88)
    at /e/fabrice/src/insight-snapshot/insight+dejagnu-20001118/tcl/win/../generic/tclExecute.c:955
#45 0x66004f58 in Tcl_EvalObj (interp=0xa027b50, objPtr=0xa1234b0)
    at /e/fabrice/src/insight-snapshot/insight+dejagnu-20001118/tcl/win/../generic/tclBasic.c:2645

^ permalink raw reply	[flat|nested] 10+ messages in thread

* RE: Buil problem
@ 2000-11-20 14:05 Fabrice Gautier
  0 siblings, 0 replies; 10+ messages in thread
From: Fabrice Gautier @ 2000-11-20 14:05 UTC (permalink / raw)
  To: 'insight@sources.redhat.com'

Hi,

Using the latest snapshot i didn't have any problem building. But insight
still crash unless I use -nw.

Thanks

-- 
Fabrice Gautier
fabrice_gautier@sdesigns.com 

> -----Original Message-----
> From: Fabrice Gautier [ mailto:Fabrice_Gautier@sdesigns.com ]
> Sent: Monday, November 20, 2000 10:55 AM
> To: 'insight@sources.redhat.com'
> Subject: RE: Buil problem
> 
> 
> Hi,
> 
> I commented out some of the cursor lines in tk.rc and itk.rc 
> files in order
> to build, but now insight simply failt with a segfault. 
> Command line seems
> to work fine.
> 
> Thanks
> 
> -- 
> Fabrice Gautier
> fabrice_gautier@sdesigns.com 
> 
> 
> 
> > -----Original Message-----
> > From: Fabrice Gautier [ mailto:Fabrice_Gautier@sdesigns.com ]
> > Sent: Friday, November 17, 2000 12:34 PM
> > To: 'insight@sources.redhat.com'
> > Subject: Buil problem
> > 
> > 
> > Hi,
> > 
> > Trying to build insight for cygwin from cvs.
> > 
> > I'm not sure what configure i should do, i guessed "./configure
> > --enable-insight" and it seems to do some things with tk so i 
> > think i t was
> > that. But with 'make' I get :
> > 
> > windres --include ./../win/rc --include ./../generic --define
> > VS_VERSION_INFO=1
> > ./../win/rc/tk.rc tkres.o
> > windres: ./../win/rc/cursor5e.cur: read of 77824 returned 0
> > make[2]: *** [tkres.o] Error 1
> > 
> > 
> > What's wrong?
> > 
> > Thanks
> > 
> > 
> > -- 
> > Fabrice Gautier
> > fabrice_gautier@sdesigns.com 
> > 
> 

^ permalink raw reply	[flat|nested] 10+ messages in thread

* RE: Buil problem
@ 2000-11-20 10:55 Fabrice Gautier
  0 siblings, 0 replies; 10+ messages in thread
From: Fabrice Gautier @ 2000-11-20 10:55 UTC (permalink / raw)
  To: 'insight@sources.redhat.com'

Hi,

I commented out some of the cursor lines in tk.rc and itk.rc files in order
to build, but now insight simply failt with a segfault. Command line seems
to work fine.

Thanks

-- 
Fabrice Gautier
fabrice_gautier@sdesigns.com 



> -----Original Message-----
> From: Fabrice Gautier [ mailto:Fabrice_Gautier@sdesigns.com ]
> Sent: Friday, November 17, 2000 12:34 PM
> To: 'insight@sources.redhat.com'
> Subject: Buil problem
> 
> 
> Hi,
> 
> Trying to build insight for cygwin from cvs.
> 
> I'm not sure what configure i should do, i guessed "./configure
> --enable-insight" and it seems to do some things with tk so i 
> think i t was
> that. But with 'make' I get :
> 
> windres --include ./../win/rc --include ./../generic --define
> VS_VERSION_INFO=1
> ./../win/rc/tk.rc tkres.o
> windres: ./../win/rc/cursor5e.cur: read of 77824 returned 0
> make[2]: *** [tkres.o] Error 1
> 
> 
> What's wrong?
> 
> Thanks
> 
> 
> -- 
> Fabrice Gautier
> fabrice_gautier@sdesigns.com 
> 

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Buil problem
@ 2000-11-17 12:34 Fabrice Gautier
  0 siblings, 0 replies; 10+ messages in thread
From: Fabrice Gautier @ 2000-11-17 12:34 UTC (permalink / raw)
  To: 'insight@sources.redhat.com'

Hi,

Trying to build insight for cygwin from cvs.

I'm not sure what configure i should do, i guessed "./configure
--enable-insight" and it seems to do some things with tk so i think i t was
that. But with 'make' I get :

windres --include ./../win/rc --include ./../generic --define
VS_VERSION_INFO=1
./../win/rc/tk.rc tkres.o
windres: ./../win/rc/cursor5e.cur: read of 77824 returned 0
make[2]: *** [tkres.o] Error 1


What's wrong?

Thanks


-- 
Fabrice Gautier
fabrice_gautier@sdesigns.com 

^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2000-11-20 19:10 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2000-11-20 19:09 Buil problem Fabrice Gautier
  -- strict thread matches above, loose matches on Subject: below --
2000-11-20 18:22 Fabrice Gautier
2000-11-20 18:56 ` Christopher Faylor
2000-11-20 19:10   ` Fernando Nasser
2000-11-20 16:12 Fabrice Gautier
2000-11-20 16:39 ` Fernando Nasser
2000-11-20 14:19 Fabrice Gautier
2000-11-20 14:05 Fabrice Gautier
2000-11-20 10:55 Fabrice Gautier
2000-11-17 12:34 Fabrice Gautier

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).