From 9b26031bd1a7b8a5bbecb072dcd67d83e1f8b233 Mon Sep 17 00:00:00 2001 From: Bill Phipps Date: Mon, 9 Sep 2024 12:28:44 -0400 Subject: [PATCH] Update maek file to use C99 instead of C11 --- SGX_Linux/sgx_t.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SGX_Linux/sgx_t.mk b/SGX_Linux/sgx_t.mk index 44f20150..7153aa37 100644 --- a/SGX_Linux/sgx_t.mk +++ b/SGX_Linux/sgx_t.mk @@ -66,7 +66,7 @@ ifeq ($(HAVE_WOLFSSL_SP), 1) -DWOLFSSL_HAVE_SP_ECC endif -Flags_Just_For_C := -Wno-implicit-function-declaration -std=c11 +Flags_Just_For_C := -Wno-implicit-function-declaration -std=c99 Common_C_Cpp_Flags := $(SGX_COMMON_CFLAGS) -nostdinc -fvisibility=hidden -fpie -fstack-protector $(Wolfssl_Enclave_Include_Paths)-fno-builtin -fno-builtin-printf -I. Wolfssl_Enclave_C_Flags := $(Flags_Just_For_C) $(Common_C_Cpp_Flags) $(Wolfssl_C_Extra_Flags)