Andrew Kaster
Andrew Kaster
Swift jobs were failing a test due to the llvm-symbolizer not being available in the default location next to the clang binary. swift.org toolchains don't ship this tool, so LSAN...
Also default to a deployment target of 15.0 for Swift-enabled builds.
Not cleaning these up by rejecting or resolving the promise causes the main thread to try to reject them at EventLoop::exit() time. If the RenderThread has already been destroyed by...
``` ➜ ladybird-browser git:(master) ✗ ./Meta/ladybird.py test --preset Sanitizer Traceback (most recent call last): File "/Users/andrew/Developer/ladybird-browser/./Meta/ladybird.py", line 516, in main() ~~~~^^ File "/Users/andrew/Developer/ladybird-browser/./Meta/ladybird.py", line 189, in main if args.target ==...
Without this, ports get built with whatever default is there from the toolchain, and we get all sorts of linker warnings about a mismatch.
See: https://maskray.me/blog/2021-11-07-init-ctors-init-array We want to eliminate all use of the old style init/deinit from our platform. cc @timschumi @BertalanD
> At least since [C11](https://www.open-std.org/jtc1/sc22/wg14/www/docs/n1570.pdf#%5B%7B%22num%22%3A429%2C%22gen%22%3A0%7D%2C%7B%22name%22%3A%22XYZ%22%7D%2C-27%2C816%2Cnull%5D) "Any declaration of a library function shall have external linkage." This is important for C++20 modules. Named declarations with internal linkage can't be exported, which...
The Xen hypervisor supports a mode called "Paravirtualization" where guest VMs are fully aware they are being run in a hypervisor and co-ordinate more closely with the DomU domain over...
I'm trying to start building my project with all of `-z,defs`, `--no-undefined` and `--no-allow-shlib-undefined` on ELF platforms. I'm pulling in swift-collections via FetchContent. libDequeModule.so fails to link with an "undefined...
[compile a potential WebAssembly response](https://webassembly.github.io/spec/web-api/#compile-a-potential-webassembly-response) lists separate steps for [upon rejection](https://webidl.spec.whatwg.org/#upon-rejection) and [upon fulfillment](https://webidl.spec.whatwg.org/#upon-fulfillment) which are both specified to call [react](https://webidl.spec.whatwg.org/#dfn-perform-steps-once-promise-is-settled). The result of following the spec pedantically here is...