We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
With current gcc 11.x you get an error when compiling asignify. I found more details in this bug report: https://bugzilla.redhat.com/show_bug.cgi?id=1937076
A possible fix could look like according to that bug report:
diff --git a/libasignify/blake2.h b/libasignify/blake2.h index 5d0d40c..f9967d0 100644 --- a/libasignify/blake2.h +++ b/libasignify/blake2.h @@ -56,7 +56,7 @@ extern "C" { uint8_t personal[BLAKE2B_PERSONALBYTES]; // 64 } blake2b_param;
The text was updated successfully, but these errors were encountered:
Fix compilation with gcc 11.x
d6b3651
Issue: #16
No branches or pull requests
With current gcc 11.x you get an error when compiling asignify.
I found more details in this bug report:
https://bugzilla.redhat.com/show_bug.cgi?id=1937076
A possible fix could look like according to that bug report:
diff --git a/libasignify/blake2.h b/libasignify/blake2.h
index 5d0d40c..f9967d0 100644
--- a/libasignify/blake2.h
+++ b/libasignify/blake2.h
@@ -56,7 +56,7 @@ extern "C" {
uint8_t personal[BLAKE2B_PERSONALBYTES]; // 64
} blake2b_param;
{
uint64_t h[8];
uint64_t t[2];
The text was updated successfully, but these errors were encountered: