Changeset 92901 in webkit
- Timestamp:
- Aug 11, 2011, 7:11:22 PM (14 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r92892 r92901 1 2011-08-11 Mark Rowe <mrowe@apple.com> 2 3 Don't conditionalize the use of -fomit-frame-pointer on compiler version as 4 all of our supported compilers are now new enough to have the same, sane behavior. 5 6 Rubber-stamped by Sam Weinig. 7 8 * Configurations/JavaScriptCore.xcconfig: 9 1 10 2011-08-11 Filip Pizlo <fpizlo@apple.com> 2 11 -
trunk/Source/JavaScriptCore/Configurations/JavaScriptCore.xcconfig
r92432 r92901 50 50 51 51 OTHER_CFLAGS = $(OTHER_CFLAGS_$(CONFIGURATION)_$(CURRENT_VARIANT)); 52 OTHER_CFLAGS_Release_normal = $(OTHER_CFLAGS_normal_$(TARGET_GCC_VERSION)); 53 OTHER_CFLAGS_Production_normal = $(OTHER_CFLAGS_normal_$(TARGET_GCC_VERSION)); 54 OTHER_CFLAGS_normal_GCC_42 = -fomit-frame-pointer -funwind-tables; 55 OTHER_CFLAGS_normal_LLVM_GCC_42 = $(OTHER_CFLAGS_normal_GCC_42); 52 OTHER_CFLAGS_Release_normal = -fomit-frame-pointer -funwind-tables; 53 OTHER_CFLAGS_Production_normal = $(OTHER_CFLAGS_Release_normal);
Note:
See TracChangeset
for help on using the changeset viewer.