On Thursday, 6 August 2015 at 14:18:09 UTC, Andrei Alexandrescu wrote:
So I am trying to unittest phobos in its 32-bit build on a Ubuntu64 machine. I installed these additional packages:

sudo apt-get install libc6-dev-i386 libcurl3:i386

When I try to unittest a phobos module, e.g.:

make -f posix.mak MODEL=32 std/conv.test

I get:

/usr/bin/ld: cannot find -lcurl

What do I need to do to link libcurl/32 properly on my 64-bit platform? I've searched around for a while, no avail.


Thanks,

Andrei

aptitude install libcurl-dev:i386

You need the 32 bits version of the libs to make that work.

Reply via email to