Skip to content
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

Fix compilation warning in ring library #753

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions sh_script/preparation.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ preparation() {
pushd library/ring
git reset --hard 464d367252354418a2c17feb806876d4d89a8508
git clean -f -d

# apply the patch to get rid of unused import warning during compilation
# https://github.com/briansmith/ring/commit/c4742e0cae849f08ff410a817c5266af41670b3d
git cherry-pick c4742e0cae849f08ff410a817c5266af41670b3d

patch -p 1 -i ../patches/ring.diff
popd
}
Expand Down
Loading