Changeset 92901 in webkit


Ignore:
Timestamp:
Aug 11, 2011, 7:11:22 PM (14 years ago)
Author:
mrowe@apple.com
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/JavaScriptCore.xcconfig:
Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r92892 r92901  
     12011-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
    1102011-08-11  Filip Pizlo  <fpizlo@apple.com>
    211
  • trunk/Source/JavaScriptCore/Configurations/JavaScriptCore.xcconfig

    r92432 r92901  
    5050
    5151OTHER_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);
     52OTHER_CFLAGS_Release_normal = -fomit-frame-pointer -funwind-tables;
     53OTHER_CFLAGS_Production_normal = $(OTHER_CFLAGS_Release_normal);
Note: See TracChangeset for help on using the changeset viewer.