|
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. -lxyThis, 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
[Prev in Thread] | Current Thread | [Next in Thread] |