我正在尝试用json-c执行一个示例c结构程序。我已经使用git clone安装了json-c。如何编译我的c程序。我必须在Makefile中做哪些更改?或者是否有任何其他方法来执行json-c中的程序。
提前谢谢你。
发布于 2013-11-12 15:38:50
如果你可以从https://github.com/json-c/json-c.git克隆json-c,https://github.com/json-c/json-c/wiki上的wiki会告诉你需要做什么:
To setup JSON-C to build on your system please run:
./configure --prefix=/some/install/path
make
make check
make installhttps://stackoverflow.com/questions/19923337
复制相似问题