0

我正在尝试在我的 Macbook Pro 上安装 RedisGraph。我已经克隆了 repo,并在项目目录中运行了make命令,但得到了以下输出。

make[2]: *** No targets specified and no makefile found.  Stop.
make[1]: *** [../deps/rax/rax.o] Error 2
make: *** [all] Error 2

虽然在 repo 中有一个 Makefile。如果我跑步make Makefile,我仍然会得到

make: Nothing to be done for `Makefile'.

我的 gcc 版本:

Configured with: --prefix=/Library/Developer/CommandLineTools/usr --with-gxx-include-dir=/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/4.2.1
Apple clang version 12.0.0 (clang-1200.0.32.27)
Target: x86_64-apple-darwin20.1.0
Thread model: posix
InstalledDir: /Library/Developer/CommandLineTools/usr/bin

我正在按照此文档中的步骤进行操作。任何帮助将不胜感激!不确定它是否与 Clang 的 OS X 版本有关(如果我必须将其更改为不同的版本)。

4

1 回答 1

0

克隆 repo 后,您必须使用 .clone 其子模块git submodule update --init --recursive 。然后 make 将正确执行。

于 2021-12-11T04:02:10.200 回答