Title: [172579] trunk
Revision
172579
Author
[email protected]
Date
2014-08-14 02:33:58 -0700 (Thu, 14 Aug 2014)

Log Message

Unreviewed. In r165709 I mistakenly appended the -fno-exceptions
and -fno-strict-aliasing compiler flags to CMAKE_CXX_FLAGS and then
re-set CMAKE_C_FLAGS with the new string. The two flags should really
be appended to CMAKE_C_FLAGS and the same variable re-set with the
new string.

* Source/cmake/OptionsCommon.cmake:

Modified Paths

Diff

Modified: trunk/ChangeLog (172578 => 172579)


--- trunk/ChangeLog	2014-08-14 08:49:48 UTC (rev 172578)
+++ trunk/ChangeLog	2014-08-14 09:33:58 UTC (rev 172579)
@@ -1,3 +1,13 @@
+2014-08-14  Zan Dobersek  <[email protected]>
+
+        Unreviewed. In r165709 I mistakenly appended the -fno-exceptions
+        and -fno-strict-aliasing compiler flags to CMAKE_CXX_FLAGS and then
+        re-set CMAKE_C_FLAGS with the new string. The two flags should really
+        be appended to CMAKE_C_FLAGS and the same variable re-set with the
+        new string.
+
+        * Source/cmake/OptionsCommon.cmake:
+
 2014-08-13  Alex Christensen  <[email protected]>
 
         Progress towards CMake on Mac.

Modified: trunk/Source/cmake/OptionsCommon.cmake (172578 => 172579)


--- trunk/Source/cmake/OptionsCommon.cmake	2014-08-14 08:49:48 UTC (rev 172578)
+++ trunk/Source/cmake/OptionsCommon.cmake	2014-08-14 09:33:58 UTC (rev 172579)
@@ -25,7 +25,7 @@
 set_property(GLOBAL PROPERTY USE_FOLDERS ON)
 
 if (CMAKE_COMPILER_IS_GNUCXX OR "${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang")
-    set(CMAKE_C_FLAGS "${CMAKE_CXX_FLAGS} -fno-exceptions -fno-strict-aliasing")
+    set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fno-exceptions -fno-strict-aliasing")
     set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -fno-exceptions -fno-strict-aliasing -fno-rtti")
 endif ()
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to