BeeWall
BeeWall
Oh thanks I'll try that. Still would be more convenient to be able to do it with annotations though.
This would definitely be a thing I'd love. I've sometimes had issues (unrelated to this app) where a message might arrive days later but I'd think it was sent just...
Encountering a similar issue, have [put a log from DevTools up on Pastebin](https://pastebin.com/0ejxKnr1) if that helps. Configuration: - OS: MacOS Big Sur 11.4 - VS Code: 1.60.2 - vscode-kotlin: v0.2.23...
[config.log (hastebin)](https://hastebin.com/owupayaqib.makefile) [make.log (hastebin)](https://hastebin.com/sodilaxeba.hs) Configure slightly modified since first post: `./configure --enable-static --disable-shared CPPFLAGS=-fPIC -fPIE -static LDFLAGS=-static /usr/lib/arm-linux-gnueabihf/libz.a /usr/lib/arm-linux-gnueabihf/libxml2.a /usr/lib/gcc/arm-linux-gnueabihf/6/libstdc++.a /usr/lib/arm-linux-gnueabihf/libm.a /usr/lib/gcc/arm-linux-gnueabihf/6/libgcc.a /usr/lib/arm-linux-gnueabihf/libc.a /usr/lib/arm-linux-gnueabihf/libdl.a /usr/lib/arm-linux-gnueabihf/libicui18n.a /usr/lib/arm-linux-gnueabihf/libicuuc.a /usr/lib/arm-linux-gnueabihf/libicudata.a /usr/lib/arm-linux-gnueabihf/liblzma.a /usr/lib/arm-linux-gnueabihf/libpthread.a --disable-rpath...
Adding `--enable-static-boost` tells me it is an unrecognized option.
How do I build the git version? There's no configure file.
I'm now trying to static compile with `./configure --enable-static --disable-shared --disable-rpath --with-pic --disable-silent-rules --enable-static-boost \ CPPFLAGS="-fPIC -fPIE" \ LDFLAGS="-static \ /usr/lib/arm-linux-gnueabihf/libz.a \ /usr/lib/arm-linux-gnueabihf/libxml2.a \ /usr/lib/arm-linux-gnueabihf/libboost_filesystem.a \ /usr/lib/arm-linux-gnueabihf/libboost_system.a \ /usr/lib/arm-linux-gnueabihf/libboost_regex.a \...
It didn't work. `root@localhost:~/xoreos-tools# ldd src/gff2xml libz.so.1 => /lib/arm-linux-gnueabihf/libz.so.1 (0xb6ea0000) libxml2.so.2 => /usr/lib/arm-linux-gnueabihf/libxml2.so.2 (0xb6d7d000) libboost_filesystem.so.1.62.0 => /usr/lib/arm-linux-gnueabihf/libboost_filesystem.so.1.62.0 (0xb6d5c000) libboost_system.so.1.62.0 => /usr/lib/arm-linux-gnueabihf/libboost_system.so.1.62.0 (0xb6d49000) libboost_regex.so.1.62.0 => /usr/lib/arm-linux-gnueabihf/libboost_regex.so.1.62.0 (0xb6c86000) libboost_atomic.so.1.62.0 => /usr/lib/arm-linux-gnueabihf/libboost_atomic.so.1.62.0 (0xb6c74000)...
Also, the error seems to be caused by me adding `-static` to `LDFLAGS`. I tried adding it to the configure in the previous post and got the same lboost_regex error.
If I remove the -static from my post two days ago, it gives the same error as in the original issue (for obvious reasons, without -static it is making a...