This is the mail archive of the cygwin mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

RE: guile problems


> -----Original Message-----
> From: cygwin-owner On Behalf Of Olwe Melwasul
> Sent: 26 September 2004 04:38

> I'm using CYGWIN_NT-5.1 and the 1.6.4 guile and trying to 
> work throught 
> the tutorial http://lonelycactus.com/guilebook/
> 
> The first example program, however, won't compile and gives 
> these errors:
> ---
> $ make
> gcc `guile-config link` -o hello_world main.o

  Gcc usually needs all the library -l options to be last on the command
line after all the ordinary object files.  Try

gcc main.o `guile-config link` -o hello_world

although I can't swear for absolutely certain this is the cause of your
problem.

> I put /usr/include in my PATH by hand. 

  That ought to be pointless, since include header files aren't executables.


    cheers, 
      DaveK
-- 
Can't think of a witty .sigline today....


--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]