Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
simplicity-sys: stop referring to non-exported mkJetCMR function
As seen when running RUSTFLAGS=-Clink-dead-code cargo test --all-features we are referring to a non-exported function mkJetCMR from the C code. By default rustc prunes this function and never tries to link it, but if you add the -Clink-dead-code rustflag (which may be needed when compiling to link with an external fuzzer) then linking fails.
- Loading branch information