I am trying to install RedisGraph on my Macbook Pro. I have clone the repo and in the project directory I ran the make
command but I get the following output.
make[2]: *** No targets specified and no makefile found. Stop.
make[1]: *** [../deps/rax/rax.o] Error 2
make: *** [all] Error 2
There's a Makefile in the repo though. If I run make Makefile
, I still get
make: Nothing to be done for `Makefile'.
My gcc version:
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
I am following the steps on this doc. Any help would be greatly appreciated! Not sure if it is related to OS X version of Clang (if I have to change it to a different version).
After cloning the repo, you must clone its submodules with
git submodule update --init --recursive
. Then make will execute properly.