Changeset 138541 in webkit


Ignore:
Timestamp:
Dec 28, 2012 9:02:29 AM (11 years ago)
Author:
mitz@apple.com
Message:

Slightly clean up WebCore's Base.xcconfig
https://bugs.webkit.org/show_bug.cgi?id=105808

Reviewed by Sam Weinig.

  • Configurations/Base.xcconfig: Simplify the definition of GCC_GENERATE_DEBUGGING_SYMBOLS,

which is always YES.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r138537 r138541  
     12012-12-28  Dan Bernstein  <mitz@apple.com>
     2
     3        Slightly clean up WebCore's Base.xcconfig
     4        https://bugs.webkit.org/show_bug.cgi?id=105808
     5
     6        Reviewed by Sam Weinig.
     7
     8        * Configurations/Base.xcconfig: Simplify the definition of GCC_GENERATE_DEBUGGING_SYMBOLS,
     9        which is always YES.
     10
    1112012-12-28  Rafael Weinstein  <rafaelw@chromium.org>
    212
  • trunk/Source/WebCore/Configurations/Base.xcconfig

    r132925 r138541  
    9595SQLITE3_HEADER_SEARCH_PATHS_macosx = $(SQLITE3_HEADER_SEARCH_PATHS_macosx_$(TARGET_MAC_OS_X_VERSION_MAJOR));
    9696
    97 // FIXME: The size of the debug symbols generated for WebCore exceeds that which a 32-bit linker can deal with.
    98 // To allow the Leopard build bots to successfully compile WebCore we're disabling debug symbols in debug builds.
    99 GCC_GENERATE_DEBUGGING_SYMBOLS = $(GCC_GENERATE_DEBUGGING_SYMBOLS_$(PLATFORM_NAME));
    100 GCC_GENERATE_DEBUGGING_SYMBOLS_iphoneos = YES;
    101 GCC_GENERATE_DEBUGGING_SYMBOLS_iphonesimulator = YES;
    102 GCC_GENERATE_DEBUGGING_SYMBOLS_macosx = $(GCC_GENERATE_DEBUGGING_SYMBOLS_macosx_$(TARGET_MAC_OS_X_VERSION_MAJOR));
    103 GCC_GENERATE_DEBUGGING_SYMBOLS_macosx_1070 = YES;
    104 GCC_GENERATE_DEBUGGING_SYMBOLS_macosx_1080 = YES;
    105 GCC_GENERATE_DEBUGGING_SYMBOLS_macosx_1090 = YES;
     97GCC_GENERATE_DEBUGGING_SYMBOLS = YES;
    10698
    10799TARGETING_SAME_OS_X_VERSION = $(TARGETING_SAME_OS_X_VERSION_$(MAC_OS_X_VERSION_MAJOR)_$(TARGET_MAC_OS_X_VERSION_MAJOR));
Note: See TracChangeset for help on using the changeset viewer.