diff options
author | Oz Linden <oz@lindenlab.com> | 2014-12-18 09:47:27 -0500 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2014-12-18 09:47:27 -0500 |
commit | 7b2045e734d802839a86a874098be77d41acba1c (patch) | |
tree | ab9bb4e2953e865719b3cf15e97a096f051de5e5 /indra/cmake | |
parent | ca6736807e892db99388b9bcd1ba4b672ff3f7e0 (diff) |
allow signed vs unsigned compare in gcc
Diffstat (limited to 'indra/cmake')
-rwxr-xr-x | indra/cmake/00-Common.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/cmake/00-Common.cmake b/indra/cmake/00-Common.cmake index ec076837f4..eb0eff2f54 100755 --- a/indra/cmake/00-Common.cmake +++ b/indra/cmake/00-Common.cmake @@ -209,7 +209,7 @@ if (LINUX OR DARWIN) endif (CMAKE_CXX_COMPILER MATCHES ".*clang") if (CMAKE_COMPILER_IS_GNUCXX) - set(GCC_WARNINGS "-Wall -Wno-trigraphs") + set(GCC_WARNINGS "-Wall -Wno-sign-compare -Wno-trigraphs") elseif (CMAKE_COMPILER_IS_CLANGXX) set(GCC_WARNINGS "-Wall -Wno-sign-compare -Wno-trigraphs") endif() |