So, I need to use arm-none-eabi-gcc to run some authentications tests. But I've never used the cross compiler, and I can't find a lot of information on coding for it. Most importantly: I can't find a way to write a Client-Server program (client side using arm-gcc). I have tried re-using the code I wrote in plain C, with gcc, but it doesn't accept three of the libraries (namely, <sys/socket.h>
, <netinet/in.h>
and <netdb.h>
), so I can't use it.
Can anyone help me by showing me a way through with I can make a micro controller contact a server in order to simulate an authentication trial?