Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com From: "Dave Korn" To: Subject: RE: guile problems Date: Mon, 27 Sep 2004 18:29:43 +0100 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit In-Reply-To: <415639A3.3040903@cpinternet.com> Message-ID: X-OriginalArrivalTime: 27 Sep 2004 17:29:44.0032 (UTC) FILETIME=[93E31600:01C4A4B7] > -----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/