mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-30 12:23:28 +00:00
[CMAKE]
- Don't check for unsupported gcc 4.6 - Disable -Wmaybe-uninitialized. It's just not useful. svn path=/trunk/; revision=59131
This commit is contained in:
@@ -46,12 +46,10 @@ endif()
|
||||
# Warnings
|
||||
add_compile_flags("-Werror -Wall -Wno-char-subscripts -Wpointer-arith -Wno-multichar -Wno-unused-value")
|
||||
|
||||
if(GCC_VERSION VERSION_LESS 4.6)
|
||||
if(GCC_VERSION VERSION_LESS 4.7)
|
||||
add_compile_flags("-Wno-error=uninitialized")
|
||||
elseif((GCC_VERSION VERSION_GREATER 4.6 OR GCC_VERSION VERSION_EQUAL 4.6) AND GCC_VERSION VERSION_LESS 4.7)
|
||||
add_compile_flags("-Wno-error=unused-but-set-variable -Wno-error=uninitialized")
|
||||
elseif(GCC_VERSION VERSION_EQUAL 4.7 OR GCC_VERSION VERSION_GREATER 4.7)
|
||||
add_compile_flags("-Wno-error=unused-but-set-variable -Wno-error=maybe-uninitialized -Wno-error=delete-non-virtual-dtor -Wno-error=narrowing")
|
||||
add_compile_flags("-Wno-error=unused-but-set-variable -Wno-maybe-uninitialized -Wno-error=delete-non-virtual-dtor -Wno-error=narrowing")
|
||||
endif()
|
||||
|
||||
if(ARCH STREQUAL "amd64")
|
||||
|
||||
Reference in New Issue
Block a user