From: | "Norm Green" <norm.green@gemtalksystems.com> |
To: | krb5-bugs@mit.edu |
Date: | Mon, 23 Mar 2020 22:16:35 -0700 |
Subject: | compile failure on red hat 6 |
In this file:
src/plugins/preauth/spake/edwards25519_fiat.h
The following code fails to compile on RH 6.5 (gcc 4.4)
typedef signed __int128 fiat_25519_int128;
typedef unsigned __int128 fiat_25519_uint128;
Changing the typedefs as follows appears to work on both old and newer
versions of gcc:
typedef __int128_t fiat_25519_int128;
typedef __uint128_t fiat_25519_uint128;
Norm Green
GemTalk Systems LLC
src/plugins/preauth/spake/edwards25519_fiat.h
The following code fails to compile on RH 6.5 (gcc 4.4)
typedef signed __int128 fiat_25519_int128;
typedef unsigned __int128 fiat_25519_uint128;
Changing the typedefs as follows appears to work on both old and newer
versions of gcc:
typedef __int128_t fiat_25519_int128;
typedef __uint128_t fiat_25519_uint128;
Norm Green
GemTalk Systems LLC