Moritz Frisch
Moritz Frisch
I found the following [instructions](https://gist.github.com/kamidev/ee0d4b3deeaf6996a24d1fca9acc6b07): There seems to be a problem with homebrew llvm and zstd. The short way: Do this (only once):`ln -s /opt/homebrew/opt/zstd/lib/libzstd.a /opt/homebrew/opt/llvm/lib/libzstd.a` Then, to build: load...
It is obviously as easy as just putting the link. Afterwards a standard build works.
There is a space missing between -lunwind and -L/opt/homebrew/opt/llvm/lib. You could look at the invocation of the command.
I suppose it has nothing to do with the repository, since I can build it fine. Maybe something got muddled up in your local copy. I would try to remove...
[See here](https://stackoverflow.com/questions/45933732/how-to-specify-a-compiler-in-cmake). After `brew install llvm clang` obey this: To use the bundled libc++ please add the following LDFLAGS: LDFLAGS="-L/opt/homebrew/opt/llvm/lib/c++ -L/opt/homebrew/opt/llvm/lib -lunwind" llvm is keg-only, which means it was not...
😀 Makes absolute sense. For me, it works without `--DCMAKE_PREFIX_PATH`. @mnemnion Could you check on your system? Should add `-DCMAKE_BUILD_TYPE=Release` anyway, because default will be a debug build. I suppose,...
Right now, on apple platform, we have to invoke cmake with -DCMAKE_PREFIX_PATH to find some needed libs. This could be automated in CMakeLists.txt. With these changes the following will work,...
With my approach, I expect, the following has been executed: ``` brew install llvm brew install ncurses brew install zstd ```