From b99ab8a47a5e725c413587141ff826589b0388f6 Mon Sep 17 00:00:00 2001 From: Daniel Micay Date: Wed, 24 Oct 2018 03:09:04 -0400 Subject: [PATCH] no need to artificially limit sealing to x86_64 --- util.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util.h b/util.h index 38ad97c..ec0db7d 100644 --- a/util.h +++ b/util.h @@ -39,7 +39,7 @@ typedef uint64_t u64; typedef unsigned __int128 u128; #ifdef CONFIG_SEAL_METADATA -#if defined(__GLIBC__) && __GLIBC_PREREQ(2, 27) && defined(__x86_64__) +#if defined(__GLIBC__) && __GLIBC_PREREQ(2, 27) #define USE_PKEY #else #error "CONFIG_SEAL_METADATA requires Memory Protection Key support"