https://git.reactos.org/?p=reactos.git;a=commitdiff;h=39545c33857fdd8ed58574...
commit 39545c33857fdd8ed58574ac349443d0eefd3bb1 Author: Hervé Poussineau hpoussin@reactos.org AuthorDate: Tue Dec 29 18:14:30 2020 +0100 Commit: Hervé Poussineau hpoussin@reactos.org CommitDate: Tue Jan 5 14:19:45 2021 +0100
[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