Jonathan Schwender
Jonathan Schwender
We should pin the checks by setting either clippy version or the rust-version in the cargo.toml. this way lints must be explictly updated to a newer toolchain instead of automatically...
I'm doing something quite similar with a patch in my fork of bindgen, which adds a bindgen callback to add attributes based on documentation comments ([callback code](https://github.com/openharmony-rs/ohos-sys/blob/f89c9db2d9570824c78d5155bd1a0843b15501d8/scripts/generator/src/main.rs#L152), [bindgen patch](https://github.com/rust-lang/rust-bindgen/commit/eb18bd672cf69a3d4b516ecc34c065a8190eb188)). The...
Is that a corrupt tool chain download, or does it really not have a rustc compiler? How does that work?
> Using rustup I installed stable-i686-unknown-linux-gnu alongside it to try to compile for x86 and started getting this: Did you install a cross-compile target for the host rustup toolchain (i.e....
You should use the host rust toolchain and setup corrosion to cross-compile. I.e. configure cmake like ``` cmake -S. -Bbuild -DRust_CARGO_TARGET=i686-unknown-linux-gnu -DCMAKE_C_COMPILER=cross-c-compiler other_options ``` This works without any problems. What...
status: ~~works locally on an M1 mac and x86 fedora 39, but on CI `ld` is behaving weirdly and not finding libraries that are definitely there. Currently don't have time...
Completing the snippet, so we can run it from the commandline with `servo testcase.html --exit --headless` . Testcase which runs on load and prints the result ```html Run Script function...
> Nice! Do you think it's possible to add that benchmark to Servo's bencher @jschwe ? For x86 I think it would probably not make sense until we have a...
I think the testcase is still significantly slower in servo than in chromium (3x on my macbook). You can also check locally by opening `support/hitrace-bencher/parse_from_string.html` in servo vs. chromium (note...