我想使用这个库(https://github.com/sirikata/berkelium/downloads)与g++编译器。它有3个文件夹:bin, lib和include。我如何处理每个文件夹中的文件?在我的c++代码中,我只需要在include文件夹中使用头文件吗?谢谢。我需要在Ubuntu 12.04的g++上做这个,我不使用任何IDE,只是vi。编辑:lib文件夹有一个so文件
要使用此库编译程序,您需要告诉编译器用于对象生成的包含文件和用于链接器作业的库文件在哪里。
在一个命令行:
g++ -I/path/to/berkelium/include -L/path/to/berkelium/library -o executable yourprogramname -llibberkerium
我会选择https://developers.google.com/native-client/peppercpp/,这个库看起来只是一个包装器,并且它不被官方支持。