Hi everyone
I am having difficulty installing the master branch. As you can see in the figures below, cmake goes fine but when i run the make command i start seeing errors.
Any help will be highly appreciated. Thanks.
Hi everyone
I am having difficulty installing the master branch. As you can see in the figures below, cmake goes fine but when i run the make command i start seeing errors.
Any help will be highly appreciated. Thanks.
Not sure what’s going on there – can you run make VERBOSE=1
which will show the actual compile command that it is trying to run under the hood?
From your cmake output before, it looks like it’s picking up an installation of fmtlib from /usr/local. You can try excluding that with:
cmake -DCMAKE_IGNORE_PATH=/usr/local ..
make
If that still doesn’t work, you may want to try building the develop
branch instead of master
.