Title: [126769] trunk
Revision
126769
Author
rwlb...@webkit.org
Date
2012-08-27 08:51:09 -0700 (Mon, 27 Aug 2012)

Log Message

[BlackBerry] remove -fno-rtti option in CMAKE_C_FLAGS
https://bugs.webkit.org/show_bug.cgi?id=95089

Reviewed by Antonio Gomes.

This option does not make sense for compiling C and gives a warning.

* Source/cmake/OptionsBlackBerry.cmake:

Modified Paths

Diff

Modified: trunk/ChangeLog (126768 => 126769)


--- trunk/ChangeLog	2012-08-27 15:50:30 UTC (rev 126768)
+++ trunk/ChangeLog	2012-08-27 15:51:09 UTC (rev 126769)
@@ -1,3 +1,14 @@
+2012-08-27  Rob Buis  <rb...@rim.com>
+
+        [BlackBerry] remove -fno-rtti option in CMAKE_C_FLAGS
+        https://bugs.webkit.org/show_bug.cgi?id=95089
+
+        Reviewed by Antonio Gomes.
+
+        This option does not make sense for compiling C and gives a warning.
+
+        * Source/cmake/OptionsBlackBerry.cmake:
+
 2012-08-27  Mikhail Pozdnyakov  <mikhail.pozdnya...@intel.com>
 
         Rename RegisterProtocolHandler API to NavigatorContentUtils

Modified: trunk/Source/cmake/OptionsBlackBerry.cmake (126768 => 126769)


--- trunk/Source/cmake/OptionsBlackBerry.cmake	2012-08-27 15:50:30 UTC (rev 126768)
+++ trunk/Source/cmake/OptionsBlackBerry.cmake	2012-08-27 15:51:09 UTC (rev 126769)
@@ -102,7 +102,7 @@
 # Set custom CFLAGS for our port
 IF (CMAKE_COMPILER_IS_GNUCC)
     SET(CMAKE_CXX_FLAGS "-fstack-protector -fno-rtti -Wformat -Wformat-security -Werror=format-security ${CMAKE_CXX_FLAGS}")
-    SET(CMAKE_C_FLAGS "-fstack-protector -fno-rtti -Wformat -Wformat-security -Werror=format-security ${CMAKE_C_FLAGS}")
+    SET(CMAKE_C_FLAGS "-fstack-protector -Wformat -Wformat-security -Werror=format-security ${CMAKE_C_FLAGS}")
     SET(JSC_LINK_FLAGS "-Wl,-z,defs -Wl,-z,relro -N1024K")
 ENDIF ()
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to