libssh2 and C++
When I try to use libssh2 in my C++ class, I keep getting the following errors:
undefined reference to `libssh2_session_init_ex' undefined reference to `libssh2_session_startup'
If I do the same thing using C, everything works fine.
Any help?
Following is the build command
g++ -Wall -g -I/libssh2-1.2.4/src -I/libssh2-1.2.4/include -L/libssh2-1.2.4/src/obj -L/openssl-0.9.8k/ -L/SecuritySDK/3.0.13/RC/LATEST/security/lib -lssh2 -ldl -lnsl -lresolv -lhash -lhandlers -lcrypto -lssl -lz -lbpwp3 rhost.o rpipe.o rutils.o -o rpipe
following is the class member function
void rhost::InitSession()
{
m_session = libssh2_session_init();
if ( libssh2_session_startup(m_session, m_sock) )
{
fprintf (stderr, "Failure estab开发者_如何转开发lishing SSH session\n");
exit(-1);
}
return;
}
Yes platform is linux
Change your call to g++ -Wall -g -I/libssh2-1.2.4/src -I/libssh2-1.2.4/include -L/libssh2-1.2.4/src/obj -L/openssl-0.9.8k/ -L/SecuritySDK/3.0.13/RC/LATEST/security/lib rhost.o rpipe.o rutils.o -o rpip -lssh2 -ldl -lnsl -lresolv -lhash -lhandlers -lcrypto -lssl -lz -lbpwp3
.
The order of libraries and object files in the parameter list matters. Read about it here.
If C works and C++ doesn't, then it sounds like you're failing to include the libssh2 function prototypes in an extern "C" {}
block, as described here. (You should double-check the header file; I'm a bit surprised that it doesn't use extern "C" {}
itself.)
精彩评论