Closed jnardone closed 7 years ago
Hello @jnardone ,
Thanks for your feedback!
The log issue resides in this test. No sink is added to the logger. However, client and server should work as expected.
We will provide some patches soon to fix your issues and the documentation.
Many thanks
Thanks for your contribution @jnardone!
SSF 3.0.0 is out. Do not hesitate to send us feedback on your usage on OS X!
I tried to build this on MacOS Sierra, and ran into several issues.
The build instructions only say to update certain submodules, but you really need to do all of them e.g.
git submodule update --init
The clang/llvm compiler on OSX does not like the assembler directive in
src/compat/memcpy.cpp
- it doesn't understandsymver
. It's unclear whether or not this is needed. I tightened up the#if
to exclude this. Similarly I had to modifysrc/compat/CMakeFiles.txt
to not link this library in.There's a
const
-ness error insrc/common/filesystem/path.h/cpp
- the==
operator must be made const e.g.bool Path::operator==(const Path& path) const
However, although this allows compilation to succeed, neither the client nor server start. They execute but print no output; building the same code from HEAD on Linux properly shows errors for missing config etc.