Google Code Exporter
Google Code Exporter
``` Includes are only used during compilation. If you're getting undefined reference errors then your object code is already compiled. IOW, it shouldn't really make a difference either way. ```...
``` I added -lpolarssl, and I'm getting the same error. The CFLAGS line looks like this: CFLAGS += -Wall -fPIC -DUSE_POLARSSL_CRYPTO -lpolarssl The Makefile I'm using is here: http://bpaste.net/show/501489/ Any...
``` This is the Gentoo version, isn't it? Gentoo has the ebuild for 1.4 but 1.4 doesn't have the PolarSSL code in it yet (you can check this by grepping...
``` Actually, now that I think of it, if this was the straight Gentoo version, you wouldn't be getting as far as the undefined reference errors. Perplexing. ``` Original comment...
``` Oh! My bad. I just took another look at the Makefile you're using. You need to put -lpolarssl in LDFLAGS since it's a linker flag. Sorry I missed that....
``` Yes, it's the Gentoo version. However what I spent most of the evening doing was writing an ebuild that patched the differences between the 1.4 and the svn versions....
``` This might be an argument order thing with gcc. Try putting it in LIBS instead. ``` Original comment by `alexanderfb` on 25 Jul 2014 at 11:09
``` Same again :( ``` Original comment by `[email protected]` on 25 Jul 2014 at 11:11
``` Can you try doing an ldd on the library you created and pasting the list of linked libraries? ldd /usr/lib/pidgin/libsteam.so ? ``` Original comment by `alexanderfb` on 25 Jul...
``` linux-vdso.so.1 (0x00007ffff35ff000) libc.so.6 => /lib64/libc.so.6 (0x00007fe1533a4000) /lib64/ld-linux-x86-64.so.2 (0x00007fe153980000) So it's not linked, right? (I totally meant to go down this road earlier, sorry, should have thought of it) ```...