Andy Polyakov
Andy Polyakov
The `which()` function does use EXE_SUFFIX, but omitting .exe on the line 2678 wouldn't be sufficient, because customarily there is no llvm-lib on Linux `$PATH`, but llvm-lib-N. One can ~for~...
Well, I for one don't have llvm-lib on the PATH. So one probably shouldn't count on it. But either way, the question about #758 not picking up llvm-lib was rather...
> There is a situation where rustc links a rust application using `/bin/cc` This is not entirely true. It's just `cc`, the first one [on] your program search path, `$PATH`....
In a way the question answers itself. I mean the answer to the "why" is obviously somebody asked the related "why" question before and came up with an answer that...
build.rs is executed whenever any file from the `cargo package --list` output is changed. So if you didn't list your C files in the `include` directive in your Cargo.toml yet,...
> I should expect the C compiler to be invoked if any of the files in `cargo package --list` were changed. As already implied, the question is when does **cargo**...
> one of the recent modifications that broke it. More specifically emission of `cargo:rerun-if-env-changed=` in 1.0.74. Collateral problem here is that one single rerun-if apparently puts aside the internal cargo...
> The `blst_derive_child_eip2333` function uses a fixed version of `keygen`. And that's how EIP-2333 defines it. I mean if it didn't use the specific version, then it couldn't be called...
As @mratsim implied, a reference to a spec is the best way to go about. As for exposing parent_SK_to_lamport_PK. Formally speaking it's not necessarily off the table, but there should...
Is it 100% reproducible or does it fail occasionally? Since you mention it explicitly, is it actually alpine-specific, or is it so you simply happen to use it? Since you...