I wasn't sure about that line too, because other commands in that Makefile target are not protected against existing files in the target symlink paths, so I wanted the behavior to at least be consistent. I guess Sean Young can decide and fixup that himself if that's important for him.
Cross compilation fixes after Thomas Uhle's comments
Thanks for the quick merge! I hope you tested it doesn't break anything for regular distros.
Cross compilation improvements
Every once in a while I'm delving into the code and trying to implement this feature myself. It's hard though.. I'm not experienced enough in C. Here's my attempt so far: diff --git i/src/drv_imap.c w/src/drv_imap.c index ad95e3d..4c1727e 100644 --- i/src/drv_imap.c +++ w/src/drv_imap.c @@ -288,7 +288,8 @@ enum CAPABILITY { NAMESPACE, UTF8_ACCEPT, UTF8_ONLY, - COMPRESS_DEFLATE + COMPRESS_DEFLATE, + IDLE }; static const struct { @@ -311,6 +312,7 @@ static const struct { { "UTF8=ACCEPT", 11 }, { "UTF8=ONLY",...
Also the rtest_matrixexp test fails for me here on NixOS.
@oconrad Did the 7.7.0 release include this change? I'm experiencing this issue when trying to build it: MLB_Interface.cpp:53:10: fatal error: opencv2/core.hpp: No such file or directory 53 | #include <opencv2/core.hpp> | ^~~~~~~~~~~~~~~~~~ compilation terminated. make[5]: *** [Makefile:549: MLB_Interface.lo] Error 1 make[5]: *** Waiting for unfinished jobs.... In file included from opencv.cpp:49: opencv.h:62:10: fatal error: opencv2/core.hpp: No such file or directory 62 | #include <opencv2/core.hpp>...
Thanks for the quick fix. I hope to see this on the next release.