I\'m currently working on an online C/C++/assembly compiler, and I stumbled upon a nice piece of software called libsandbox. This enables me to run the online written code, comp
The short and general answer is: to use libanything, you write a program that utilizes that library - you #include <anything.h> into the source and link with -lanything switch. You're not supposed to find any executable files, unless it's a test suite or an example program for the library.
I wasn't able to find 'libsandbox' for some reason, so my reply might be grossly inaccurate.