0

所以昨晚我在Ubuntu上安装了redex,一切都很顺利。我今天在我的 Mac 上设置它时遇到问题。

我在这autoreconf -ivf && ./configure && make && make install一步遇到了 3 个错误。

Please install double-conversion library

Please install google-glog library

Please install google-gflags library

我不会一下子得到这些。我得到了第一个,所以我在这里遵循了解决方案,但这没有用,所以我只是从 configure.ac 文件中删除了该检查。这导致了第二个错误,然后导致了第三个错误。

我不确定为什么会发生这种情况,我按照与昨晚完全相同的步骤进行操作。

有什么建议么?

所以我遵循了拉尔夫的建议,现在我遇到了一个不同的错误 -

      ...
  "double_conversion::StringToDoubleConverter::StringToIeee(char const*, int, int*, bool) const", referenced from:
      folly::detail::str_to_float(folly::Range<char const*>*) in libfolly.a(Conv.o)
      folly::detail::str_to_double(folly::Range<char const*>*) in libfolly.a(Conv.o)
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
make[2]: *** [redex-all] Error 1
make[1]: *** [all-recursive] Error 1
make: *** [all] Error 2
4

2 回答 2

1

您必须执行以下步骤

xcode-select --installbrew link --force openssl

之后将#include <stddef.h>行添加到third-party/folly/folly/portability/Malloc.h

看到这个帖子

于 2016-04-13T19:09:01.947 回答
0

看起来代码中存在需要解决的错误。早期采用者的乐趣;)

https://github.com/facebook/redex/commits/master

它现在对我有用。

于 2016-04-19T17:42:15.253 回答