-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add patch for Hashtree library, which fixes linking warning
- Loading branch information
Showing
2 changed files
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
diff --git a/src/sha256_shani.S b/src/sha256_shani.S | ||
index 6599e02..cabc11f 100644 | ||
--- a/src/sha256_shani.S | ||
+++ b/src/sha256_shani.S | ||
@@ -973,5 +973,9 @@ hashtree_sha256_shani_x2: | ||
movdqa xmm15, [rsp + 9*16] | ||
#endif | ||
add rsp, frame_size | ||
- ret | ||
+ ret | ||
+#ifdef __linux__ | ||
+.size hashtree_sha256_shani_x2,.-hashtree_sha256_shani_x2 | ||
+.section .note.GNU-stack,"",@progbits | ||
+#endif | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters