How to solve the linking error in libwebsockets

1.1k Views Asked by At

I use libwebsockets for a client program in C. Therefore I build the library for the libwebsocktes locally on my machine (ubuntu). After I want to Build the Project in Eclipse, I get the following output:

14:58:40 **** Incremental Build of configuration Build (GNU) for project ClientA ****
make all 
cc -o clientA ifaddrs.o mo.o misc.o dm.o ws.o  -lcurl -lrt -lxml2 -ljson-c   -lssl -lcrypto   -lpthread -Wl,-Bstatic -L/home/vps/src/libwebsockets/build/lib -lwebsockets -Wl,-Bdynamic
/usr/bin/ld: /home/bla/libwebsockets/build/lib/libwebsockets.a(ssl.c.o):  undefined reference to symbol 'SSL_get_fd@@OPENSSL_1.0.0'
/usr/lib/gcc/i686-linux-gnu/4.7/../../../i386-linux-gnu/libssl.so: error adding symbols: DSO missing from command line
collect2: error: ld returned 1 exit status
make: *** [clientA] Error 1
14:58:41 Build Finished (took 1s.223ms)

It seems to be a problem with the libwebsockets.a. But how I can solve it ?

0

There are 0 best solutions below