From 39545c33857fdd8ed58574ac349443d0eefd3bb1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herv=C3=A9=20Poussineau?= Date: Tue, 29 Dec 2020 18:14:30 +0100 Subject: [PATCH] [CMAKE] Use -Wno-error when compiling with GCC x64 --- sdk/cmake/gcc.cmake | 1 + 1 file changed, 1 insertion(+) diff --git a/sdk/cmake/gcc.cmake b/sdk/cmake/gcc.cmake index 72c0f5d09e0..9e94d499ea8 100644 --- a/sdk/cmake/gcc.cmake +++ b/sdk/cmake/gcc.cmake @@ -148,6 +148,7 @@ if(ARCH STREQUAL "i386") endif() elseif(ARCH STREQUAL "amd64") add_compile_options(-mpreferred-stack-boundary=4) + add_compile_options(-Wno-error) endif() # Other