[cfe-commits] r116545 - /cfe/trunk/CMakeLists.txt
Oscar Fuentes
ofv at wanadoo.es
Thu Oct 14 17:16:22 PDT 2010
Author: ofv
Date: Thu Oct 14 19:16:22 2010
New Revision: 116545
URL: http://llvm.org/viewvc/llvm-project?rev=116545&view=rev
Log:
Copied some flags from the Makefile build to the list of GCC flags.
This removes a lot of warnings.
Modified:
cfe/trunk/CMakeLists.txt
Modified: cfe/trunk/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/CMakeLists.txt?rev=116545&r1=116544&r2=116545&view=diff
==============================================================================
--- cfe/trunk/CMakeLists.txt (original)
+++ cfe/trunk/CMakeLists.txt Thu Oct 14 19:16:22 2010
@@ -49,7 +49,7 @@
if (CMAKE_COMPILER_IS_GNUCXX)
# FIXME: Turn off exceptions, RTTI:
# -fno-exceptions -fno-rtti
- set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fno-common -Woverloaded-virtual -pedantic -Wno-long-long -Wall -W -Wno-unused-parameter -Wwrite-strings")
+ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fno-common -Woverloaded-virtual -Wcast-qual -fno-strict-aliasing -pedantic -Wno-long-long -Wall -W -Wno-unused-parameter -Wwrite-strings")
endif ()
if (APPLE)
More information about the cfe-commits
mailing list