tags:

views:

152

answers:

1

Hallo i need to install and libs for c.I am using a linux ubuntu o/s.Does anybody knows how i can install them?

+3  A: 

Try: sudo apt-get install build-essential, that should produce a working tool chain. If you need cross compilers, update your question and I'll post a very, very long shell script to install them.

Tim Post
+1; this will get you other things you probably need later on. The files `semaphore.h` and `pthread.h` are in `libc6-dev`, which you should have for any C development anyhow.
Arkku