"So opt-level=z should be avoided..." <- Rather, probably better to keep opt-level=z and lto=fat but add the rustflag to disable outlining. E.g. in .cargo/config.toml: ``` [target.'cfg(target_arch = "arm")'] rustflags = [ ... "-C", "llvm-args=--enable-machine-outliner=never", ] ```