chicken-users
[Top][All Lists]
Advanced

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

Re: [Chicken-users] static library and link


From: Thomas Chust
Subject: Re: [Chicken-users] static library and link
Date: Wed, 24 May 2006 12:17:11 +0000 (GMT)

On Wed, 24 May 2006, John Cowan wrote:

felix winkelmann scripsit:

[...]
We can also combine multiple library units into a static library:

% ar cru libxy.a x.o y.o
% csc z.scm -L. -lxy

This, however, pukes on Cygwin as follows:
[...]

Hello,

this again looks like Win32 mixed linkage problems. Try linking with the static chicken libraries by doing at least

  csc -static-libs z.scm -L. -lxy

or even

  csc -static z.scm -L. -lxy

cu,
Thomas




reply via email to

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