Denis G.
Denis G.
Yes. It is fixed. Other error: ``` /usr/home/username/bh126/src/formatter/string.cpp:193:27: error: no member named 'pthread_getname_np' in the global namespace const auto rc = ::pthread_getname_np(record.tid(), buffer.data()... ~~^ ``` Full log: ``` Scanning dependencies...
> Can you just try to add #include at top of "src/formatter/string.cpp"? I did it. Same error. I found: FreeBSD contains pthread support in standard libc. But FreeBSD contains not...
LLDB (from LLVM) use the workaround for FreeBSD: It is used here: https://github.com/freebsd/freebsd/blob/af3e10e5a78d3af8cef6088748978c6c612757f0/contrib/llvm/tools/lldb/source/Host/freebsd/ThisThread.cpp It is implemented here: https://github.com/freebsd/freebsd/blob/af3e10e5a78d3af8cef6088748978c6c612757f0/contrib/llvm/tools/lldb/source/Host/freebsd/HostThreadFreeBSD.cpp
See https://github.com/meshbird/meshbird/blob/78488b803f607154c7db9f16c4043b4feb94dff4/src/meshbird/iface/iface.go Actual Meshbird version 2.1 not supports FreeBSD because Meshbird uses package "github.com/songgao/water" for TUN/TAP. This package not have implementation for FreeBSD. Here is version the same package but...
"extends" and other - it is problem end of line Windows use "CR+LF" or "\r\n" Unix use "LF only" or "\n" I fixed it file github.com\eknkc\amber\parser\scanner.go old line no.452 is:...