3

我正在尝试构建 redex - 不幸的是它失败了:

checking for ceil in -ldouble-conversion... no
configure: error: Please install double-conversion library

但我安装了这个库:

➜  double-conversion git:(master) ✗ sudo scons install          
[sudo] password for ligi: 
scons: Reading SConscript files ...
scons: done reading SConscript files.
scons: Building targets ...
scons: `install' is up to date.
scons: done building targets.

我从https://github.com/google/double-conversion安装它

4

2 回答 2

6

我有同样的问题,并在网上找到了解决方案。

您需要做的是在 redex 的主文件夹中打开“configure.ac”并替换AC_CHECK_LIB([double-conversion],[ceil],[],[AC_MSG_ERROR(AC_CHECK_LIB([double-conversion],[main],[],[AC_MSG_ERROR(

原始解决方案:http: //qiita.com/takke/items/6f39aa4901cb7c7faac9

之后我能够建立

于 2016-04-13T13:55:42.010 回答
2

我已经修复了配置中的双重转换错误,所以这应该不再是问题了。感谢您报告它。

于 2016-04-14T22:12:48.980 回答