Ji-Haeng Huh

Results 3 comments of Ji-Haeng Huh

> Seems like this is caused by [rust-lang/rust#128370](https://github.com/rust-lang/rust/pull/128370) I doubt it since the PR has already been merged into `1.82.0`. Please also see https://github.com/Riey/kime/issues/693#issuecomment-2612017513 .

To me, putting `-Clink-args=-L./target/release` in `.cargo/config.toml` doesn't seem appropriate since it was a very hacky way of making it just work for the nix build. It's only for `release` build,...

It looks like `rustc-1.82.0` no longer respects `LD_LIBRARY_PATH` defined in `build.sh`. https://github.com/Riey/kime/blob/c5e007c4ddaef0b176ba0d4198e1654b7e1dcabd/scripts/build.sh#L93 As a quick fix, you can use ```nix pkgs.kime.overrideAttrs { RUSTFLAGS="-Clink-args=-L./target/release"; }); ``` Or directly to your Nixos...