你如何编译CodeShark / RippleGen?

时间:2013-12-28 05:06:34

标签: c++

我想运行下面的代码

https://github.com/CodeShark/RippleGen

如何编译它以便我可以运行它?

我在Windows 7上,如果需要,我可以在VM上安装Ubuntu

1 个答案:

答案 0 :(得分:1)

通过在repo的根目录中运行make来编译它。

你必须在你的盒子上安装GNU Make。我看到makefile指定了-lssl -lcrypto -lboost_thread -lboost_system个库,所以你必须有openssl,libcrypto(你可以在安装libssl-dev时得到它),以及可用的boost库。

我个人会更熟悉在Ubuntu上进行此设置 - 您可以轻松地在那里拥有必要的软件包,但如果您安装了cygwin,它也应该可以在Windows上使用。

相关问题