não consigo encontrar -lwebsock

2

Estou instalando o gateway janus para implementar o webrtc no Ubuntu 14.04.
Eu instalei todas as dependências de acordo com a documentação , quando eu executo o script usando sh install.sh recebo o seguinte erro :

gcc -fstack-protector-all -g -ggdb -rdynamic  -o test test.o -lwebsock
/usr/bin/ld: cannot find -lwebsock
collect2: error: ld returned 1 exit status
make[1]: *** [test] Error 1
make[1]: Leaving directory '/home/gayan/MyDetails/MyApplications/virtualClassRoomTest/janus-gateway/wstest'
make: *** [wstest] Error 2

The installer couldn't find the libwebsock lib, which is needed for WebSockets
You can install version 1.0.4 (required!) with the following steps:
    wget http://paydensutherland.com/libwebsock-1.0.4.tar.gz
    tar xfv libwebsock-1.0.4.tar.gz
    cd libwebsock-1.0.4
    ./configure --prefix=/usr && make && sudo make install

    [Note: you may need to pass --libdir=/usr/lib64 to the configure script if you're installing on a x86_64 distribution]

Eu também instalei o libwebsock usando as etapas acima. Qualquer tipo de ajuda é apreciado.

[ link

    
por Gayan Charith 23.07.2014 / 08:47

1 resposta

1

Parece que você não instalou a biblioteca libwebsock corretamente. Tente seguir o link para instalar a biblioteca libwebsock. link

Após a instalação, verifique se a biblioteca compartilhada libwebsock.so está disponível. Se assim você instalou com sucesso a biblioteca libwebsock

    
por 30.07.2014 / 08:47