jim
jim

Reputation: 71

Contiki-ng with libcoap

I have Ubuntu 16.04LTS and contiki-ng installed. Trying to start a multicast root (provided by the cooja multicast example) in a terminal i faced the error "Failed to open tun device". The same error appeared with sink node but it solved using sudo. With root node exists in any case. I read somewhere that I need to replace the native coap package with libcoap. So I tried (as described in libcoap.net/install.html)

sudo git [email protected]:obgm/libcoap.git
./autogen.sh
./configure
make    

but then I received the error "make : No targets determined and no makefile found". Can somebody help me please ?

Upvotes: 1

Views: 183

Answers (1)

user3140961
user3140961

Reputation:

git, ./autogen.sh and ./configure worked ok. The error throwed when I run "make" command.

Meanwhile a friend showed me the problem was the lack of the --disable-dtls parameter in ./configure. Now its ok thanks

Upvotes: 0

Related Questions