0

我想将此库(https://github.com/sirikata/berkelium/downloads)与 g++ 编译器一起使用。它有 3 个文件夹:bin、lib 和 include。我如何处理每个文件夹中的文件?在我的 C++ 代码中,我是否只需要使用包含文件夹中的标题?谢谢。我需要在 Ubuntu 12.04 中的 g++ 上执行此操作,并且我没有使用任何 IDE,只是 vi。编辑:lib文件夹有一个so文件。

4

2 回答 2

0

I would go for https://developers.google.com/native-client/peppercpp/ , that library looks like it's just a wrapper and it's not officially supported.

于 2013-05-15T04:40:01.037 回答
0

要使用这个库编译程序,您需要告诉编译器包含文件在哪里,用于生成对象,以及用于链接器作业的库文件。

在一个命令行中:

g++ -I/path/to/berkelium/include -L/path/to/berkelium/library -o 可执行你的程序名 -llibberkerium

于 2013-05-15T04:36:58.277 回答