You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-cpp/rttr/files/rttr-0.9.6-werror.patch

19 lines
609 B

This causes build failures with modern GCC, and is against Gentoo policy in any case.
--- a/CMake/utility.cmake
+++ b/CMake/utility.cmake
@@ -392,11 +392,9 @@
####################################################################################
function( set_compiler_warnings target)
if(CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
- set(WARNINGS "-Werror"
- "-Wall")
+ set(WARNINGS "-Wall")
elseif(CMAKE_CXX_COMPILER_ID MATCHES "Clang")
- set(WARNINGS "-Werror"
- "-Wall")
+ set(WARNINGS "-Wall")
elseif(MSVC)
set(WARNINGS "/WX"
"/W4")