Hello,
debian squeeze/sid - git clone of october the 12th, 2010
...
gcc 4:4.4.4-2
libgc-dev 1:7.1-3
libgc1c2 1:7.1-3
...
Very sorry for the lonnnng delay! For me your suggestion didn't work. What
worked is
the following [also manually defining LIBFFI_xxx vars]:
export PKG_CONFIG=true
export BDW_GC_CFLAGS=
export BDW_GC_LIBS=-lgc
export LIBFFI_CFLAGS=
export LIBFFI_LIBS=-lffi
./configure
make
Thanks,
David
;; --
Le Wed, 18 Aug 2010 18:27:02 -0400,
Mark H Weaver <[email protected]> a écrit :
> Reviving an old thread...
>
> Recall that David Pirotte had trouble linking libguile-2.0.so because
> -lffi was not included in the link command, despite the fact that
> `pkg-config --libs libffi' did the right thing.
>
> I ran into the same problem trying to build guile on gNewSense/mipsel.
>
> In my case, the problem was that I had set PKG_CONFIG=true while running
> configure. I did this because it was recommended by the README in the
> section on setting the BDW_GC_* variables.
>
> Perhaps that was David's problem as well?
>
> Mark