Alcaro
Alcaro
Windows does, or did, exactly what OP is proposing. https://devblogs.microsoft.com/oldnewthing/20041217-00/?p=36953 https://devblogs.microsoft.com/oldnewthing/20160413-00/?p=93301 If it's good enough for both Windows and Mac, it's certainly worth investigating on Linux. Worst case, it ends...
[LLVM has something named RustDemangle.cpp](https://github.com/llvm/llvm-project/blob/main/llvm/lib/Demangle/RustDemangle.cpp), in case that helps. Don't know how complete it is, though. Nor how stable its API is. AFAIK LLVM offers no stability guarantees other than...
We added cmake support a while ago, #49. Then we removed it, e4e85353455675d8f46c3136fe121a011355f34b. My guess is that Meson would meet the same fate, but maybe things have changed since last...
Yes, per #189, mac support is currently nowhere near complete. Maybe mold should print an unremovable "mold: mac support is currently in pre-alpha stage; pull requests are welcome, but please...
[Yes, elfhack certainly is abusing linker options in some way.](https://glandium.org/blog/?p=1177) Or abusing _something_, I'm not sure what. Feels like the kind of thing that should either be part of the...
Yes, it is problematic for mold. There is a workaround, but it's pretty ugly. #362
"unknown linker script token" looks like a bug. If it's intentional, maybe change it to something like "SECTIONS command is unimplemented, please use lld for full linker script support".
See also: #267, #222 Yes, you can set SYSTEM_TBB=1 on the make invocation. Looks to me like an issue in upstream TBB. We're on the latest release (2021.5), did anyone...
Cross compiling is often troublesome. It's often easier to install a 32bit chroot or VM than convince various packages to compile for something else than the native host, especially on...
Yep, here's a bug. I can reduce it to ```c++ #include "ctll/fixed_string.hpp" #include "ctre.hpp" static constexpr auto ptv_regex = ctll::fixed_string( "(?:a|ab)?" ); bool x() { auto found = ctre::match( "ab"...