i would like to get the ball rolling on stabilizing as many of the pointer APIs that were introduced in the last year
APIs:
i would like to get the ball rolling on stabilizing as many of the pointer APIs that were introduced in the last year
APIs:
[package] | |
name = "rustblog" | |
version = "0.1.0" | |
edition = "2021" | |
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | |
[dependencies] | |
serde_json = "1.0" | |
serde = { version = "1.0", features = ["derive"] } |
// Experimental sketches of specifying abi-checker tests with kdl. | |
// See: https://github.com/Gankra/abi-cafe | |
// | |
// Basically we generate source code for different languages (c, rust, ...) | |
// from these abstract type/function definitions and then have them call eachother | |
// and check that the values didn't get corrupted along the way. | |
// Custom type definitions we want to pass across the ABI/convention of interest. | |
// |
Some movement tech that's worth knowing about. Don't get discouraged if you don't know all the tech, routes win races!
For brevity, the speed of options will be described like "2x the speed of holding forward". i.e. if it takes 10 seconds to cross a room by holding forward, taking 5 seconds is "2x".
Certain movement options can be rapidly chained together, especially when you learn to cancel them.
{ | |
"dist_version": "0.0.2-prerelease01", | |
"releases": [ | |
{ | |
"app_name": "cargo-dist", | |
"app_version": "0.0.2", | |
"artifacts": [ | |
{ | |
"name": "cargo-dist-v0.0.2-x86_64-unknown-linux-gnu.tar.xz", | |
"kind": "executable-zip", |
Clang and GCC disagree on the ABI of __int128
(and its various unsigned
/_t
variants) on x64 linux (at least).
The issue is that when pushing __int128
to the stack, clang only aligns to 8, even though in structs it's aligned to 16.
This causes Clang and GCC to disagree on the offset for by-value __int128
arguments that need padding to be 16-aligned.
The following function signature demonstrates this in practice:
void i128_val_in_0_perturbed_small(
uint8_t arg0,
// Experimental sketches of specifying abi-checker tests with kdl. | |
// See: https://github.com/Gankra/abi-checker | |
// | |
// Basically we generate source code for different languages (c, rust, ...) | |
// from these abstract type/function definitions and then have them call eachother | |
// and check that the values didn't get corrupted along the way. | |
// Custom type definitions we want to pass across the ABI/convention of interest. | |
// |
Building GeckoView on WSL(2) basically works out of the box like building it natively on Linux with mach.
Running your build is the real issue.
You generally have two options for running:
Trying to launch an emulator is likely to run into KVM errors, although apparently this has been fixed in the latest versions of Windows 11 (haven't confirmed).
echo "hello 😺 मनीष بسم 好あaa" && echo "aaaaaaaaaaaaaaaaaaaaaaaa" |