Running libsandbox

前端 未结 3 1482
梦如初夏
梦如初夏 2021-01-22 12:40

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

3条回答
  •  佛祖请我去吃肉
    2021-01-22 13:19

    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.

提交回复
热议问题