Impossibile trovare -lwebsock


2

Sto installando janus gateway per implementare webrtc in Ubuntu 14.04.
Ho installato tutte le dipendenze secondo la documentazione , quando eseguo lo script usando sh install.sh ottengo il seguente errore:

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]

Ho anche installato libwebsock usando i passaggi precedenti. Ogni tipo di aiuto è apprezzato.

[ https://github.com/meetecho/janus-gateway.git]

Risposte:


1

Sembra che tu non abbia installato correttamente la libreria libwebsock. Prova a seguire il link per installare la libreria libwebsock. https://github.com/payden/libwebsock/wiki/Installation

Dopo l'installazione, verificare se la libreria condivisa libwebsock.so è disponibile. In tal caso, hai installato correttamente la libreria libwebsock

Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.