What steps will reproduce the problem?
1. Download, make and make install twitcurl on Ubuntu Oninit Ocelot
2. Try to compile a consumer of twitcurl using g++ source.cpp -o output
-ltwitcurl provides an error stating that libtwitcurl can't link against curl
What is the expected output? What do you see instead?
The make / make install should work on ubuntu
What version of the product are you using? On what operating system?
latest libtwitcurl on latest Ubuntu
Please provide any additional information below.
I resolved this issue by changing to G++ call in your Makefile to:
$(CC) -shared -Wl,-soname,lib$(LIBNAME).so.1 $(LDFLAGS) -o lib$(LIBNAME).so.1.0 *.o -L$(LIBRARY_DIR) -lcurl
Original issue reported on code.google.com by p...@paulswilliams.me.uk on 23 Apr 2012 at 9:45
Original issue reported on code.google.com by
p...@paulswilliams.me.uk
on 23 Apr 2012 at 9:45