vote up 2 vote down star

I'm compiling some code which uses libcurl on a Debian Linux system. My dev machine is running Debian 5 but I want the binary to be usable on older Debian 4 systems too.

I find that if I specify -lcurl it will link to libcurl.so.4 but Debian 4 systems only have libcurl.so.3

Is there some way I can tell GCC to link to either libcurl.so.3 (which exists in both Debian 4 and 5) or just libcurl.so so it will use whatever version is available ?

flag

1  
On the older Debian, isn't libcurl.so a symlink to libcurl.so.3 ? I mean, it looks strange that -lcurl does not the right thing by default. – kastauyra May 6 at 6:13
kastauyra: the versions are not, or at least cannot be assumed to be, binary compatible. So when you link it records the major version linked against in the binary: if you compile on the newer system it will require version 4 and not work on the old system. (Actually what it records is the soname, which is a string stored in the library file which conventionally but not necessarily is something "libcurl.so.3") – Mark Baker Jun 11 at 13:30

2 Answers

vote up 1 vote down check

You can pass the actual .so file instead of -l on the linker command line, and it ought to do what you want.

link|flag
Ah, that almost works except that libcurl.so is just a symlink to lubcurl.so.4 on Debian and so it still links to libcurl.so.4. – Adam Pierce May 6 at 4:53
I'll mark this as accepted answer although it is not exactly right for libcurl on Debian 5. What I ended up doing is getting a copy of libcurl.so.3 from a Debian 4 system and linking directly to that by specifying the .so filename as bdonlan suggested. – Adam Pierce May 6 at 6:35
vote up 1 vote down

How about creating a symlink local to your project that links to .3, then you can just use -L at compile time. I'm not sure if you'd get a name conflict though, but you could always call it libcurl-old.so just in case.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.