Keithcat1
Keithcat1
Now that we're using LLVM_LINK_LLVM_DYLIB, wouldn't the build-time cost of LTO be reduced quite a bid?
I imagine that for example, all of the LLVM optimizing code is in libLLVM*.dll. Clang probably spends most of its time in there and since it's in the same library,...
By the way, Rust ships its standard libraries with .llvmbc sections in the object files that contain LLVM bitcode, allowing link time optimization to be performed between both the standard...
Yeah ran into this. Means you can't use `BigInt` from the REPL for instance.
Just tested the code above with the latest Flutter master, NVDA 2023.1. Text field started out unfocused, had to use NVDA's object navigation to get in it, tab didn't work...
I built Servo about a year and a half ago and because I'm a screen reader user, it turned out that the only accessible and usable part of the program...
Yes, Egui already uses that and it works beautifully.
I got something similar: ``` Uncaught TypeError: Invalid FFI pointer type, expected null, or External at Object.value [as play] (ext:deno_ffi/00_ffi.js:526:24) at play (https://deno.land/x/[email protected]/bindings/bindings.ts:34:32) at :1:36 ```
Running: `bunx @google/gemini-cli --version` Seems to cause it to reinstall 500 packages every single time I run it.
I don't mind that the enums values are globally available from Cython code, but Python can already access them via the enum class. Actually there's a project that migrated from...