-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ABI checking #34
Comments
#!/bin/sh
set -e
zlib_path=$(ldconfig -p | grep "libz.so " | awk '{print $4}')
zlib_filename=$(basename "$zlib_path")
abidw $zlib_path > /tmp/$zlib_filename.abi
cargo build -p libz-rs-sys --release
abidw target/release/liblibz_rs_sys.so > /tmp/liblibz_rs_sys.so.abi
abidiff /tmp/$zlib_filename.abi /tmp/liblibz_rs_sys.so.abi this reports the missing gz symbols, and also shows that we don't do symbol versioning currently
|
Merged
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Todo:
The text was updated successfully, but these errors were encountered: