Title: [92901] trunk/Source/_javascript_Core
- Revision
- 92901
- Author
- [email protected]
- Date
- 2011-08-11 19:11:22 -0700 (Thu, 11 Aug 2011)
Log Message
Don't conditionalize the use of -fomit-frame-pointer on compiler version as
all of our supported compilers are now new enough to have the same, sane behavior.
Rubber-stamped by Sam Weinig.
* Configurations/_javascript_Core.xcconfig:
Modified Paths
Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (92900 => 92901)
--- trunk/Source/_javascript_Core/ChangeLog 2011-08-12 02:07:24 UTC (rev 92900)
+++ trunk/Source/_javascript_Core/ChangeLog 2011-08-12 02:11:22 UTC (rev 92901)
@@ -1,3 +1,12 @@
+2011-08-11 Mark Rowe <[email protected]>
+
+ Don't conditionalize the use of -fomit-frame-pointer on compiler version as
+ all of our supported compilers are now new enough to have the same, sane behavior.
+
+ Rubber-stamped by Sam Weinig.
+
+ * Configurations/_javascript_Core.xcconfig:
+
2011-08-11 Filip Pizlo <[email protected]>
DFG JIT verbose mode does not report the generated types of nodes
Modified: trunk/Source/_javascript_Core/Configurations/_javascript_Core.xcconfig (92900 => 92901)
--- trunk/Source/_javascript_Core/Configurations/_javascript_Core.xcconfig 2011-08-12 02:07:24 UTC (rev 92900)
+++ trunk/Source/_javascript_Core/Configurations/_javascript_Core.xcconfig 2011-08-12 02:11:22 UTC (rev 92901)
@@ -49,7 +49,5 @@
PRODUCT_NAME = _javascript_Core;
OTHER_CFLAGS = $(OTHER_CFLAGS_$(CONFIGURATION)_$(CURRENT_VARIANT));
-OTHER_CFLAGS_Release_normal = $(OTHER_CFLAGS_normal_$(TARGET_GCC_VERSION));
-OTHER_CFLAGS_Production_normal = $(OTHER_CFLAGS_normal_$(TARGET_GCC_VERSION));
-OTHER_CFLAGS_normal_GCC_42 = -fomit-frame-pointer -funwind-tables;
-OTHER_CFLAGS_normal_LLVM_GCC_42 = $(OTHER_CFLAGS_normal_GCC_42);
+OTHER_CFLAGS_Release_normal = -fomit-frame-pointer -funwind-tables;
+OTHER_CFLAGS_Production_normal = $(OTHER_CFLAGS_Release_normal);
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes