Changeset 86598 in webkit


Ignore:
Timestamp:
May 16, 2011 12:59:34 PM (13 years ago)
Author:
ddkilzer@apple.com
Message:

<http://webkit.org/b/60913> C++ exceptions should not be enabled when building with llvm-gcc-4.2
<rdar://problem/9446430>

Reviewed by Mark Rowe.

Source/JavaScriptCore:

  • Configurations/Base.xcconfig: Fixed typo.

Source/JavaScriptGlue:

  • Configurations/Base.xcconfig: Fixed typo.

Source/ThirdParty/ANGLE:

  • Configurations/Base.xcconfig: Fixed typo.

Source/WebCore:

  • Configurations/Base.xcconfig: Fixed typo.

Source/WebKit/mac:

  • Configurations/Base.xcconfig: Fixed typo.

Source/WebKit2:

  • Configurations/Base.xcconfig: Fixed typo.

Tools:

  • MiniBrowser/Configurations/Base.xcconfig: Fixed typo.
  • TestWebKitAPI/Configurations/Base.xcconfig: Ditto.
  • WebKitTestRunner/Configurations/Base.xcconfig: Ditto.
Location:
trunk
Files:
16 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r86594 r86598  
     12011-05-16  David Kilzer  <ddkilzer@apple.com>
     2
     3        <http://webkit.org/b/60913> C++ exceptions should not be enabled when building with llvm-gcc-4.2
     4        <rdar://problem/9446430>
     5
     6        Reviewed by Mark Rowe.
     7
     8        * Configurations/Base.xcconfig: Fixed typo.
     9
    1102011-05-16  Oliver Hunt  <oliver@apple.com>
    211
  • trunk/Source/JavaScriptCore/Configurations/Base.xcconfig

    r85037 r86598  
    109109GCC_ENABLE_CPP_EXCEPTIONS_GCC_40 = NO;
    110110GCC_ENABLE_CPP_EXCEPTIONS_GCC_42 = NO;
    111 GCC_ENABLE_CPP_EXCEPTIONS_LLVM_GCC = NO;
     111GCC_ENABLE_CPP_EXCEPTIONS_LLVM_GCC_42 = NO;
    112112GCC_ENABLE_CPP_EXCEPTIONS_LLVM_COMPILER = YES;
    113113
  • trunk/Source/JavaScriptGlue/ChangeLog

    r86396 r86598  
     12011-05-16  David Kilzer  <ddkilzer@apple.com>
     2
     3        <http://webkit.org/b/60913> C++ exceptions should not be enabled when building with llvm-gcc-4.2
     4        <rdar://problem/9446430>
     5
     6        Reviewed by Mark Rowe.
     7
     8        * Configurations/Base.xcconfig: Fixed typo.
     9
    1102011-05-12  David Kilzer  <ddkilzer@apple.com>
    211
  • trunk/Source/JavaScriptGlue/Configurations/Base.xcconfig

    r86396 r86598  
    7979GCC_ENABLE_CPP_EXCEPTIONS_GCC_40 = NO;
    8080GCC_ENABLE_CPP_EXCEPTIONS_GCC_42 = NO;
    81 GCC_ENABLE_CPP_EXCEPTIONS_LLVM_GCC = NO;
     81GCC_ENABLE_CPP_EXCEPTIONS_LLVM_GCC_42 = NO;
    8282GCC_ENABLE_CPP_EXCEPTIONS_LLVM_COMPILER = YES;
    8383
  • trunk/Source/ThirdParty/ANGLE/ChangeLog

    r85762 r86598  
     12011-05-16  David Kilzer  <ddkilzer@apple.com>
     2
     3        <http://webkit.org/b/60913> C++ exceptions should not be enabled when building with llvm-gcc-4.2
     4        <rdar://problem/9446430>
     5
     6        Reviewed by Mark Rowe.
     7
     8        * Configurations/Base.xcconfig: Fixed typo.
     9
    1102011-05-04  David Kilzer  <ddkilzer@apple.com>
    211
  • trunk/Source/ThirdParty/ANGLE/Configurations/Base.xcconfig

    r85762 r86598  
    3131GCC_ENABLE_CPP_EXCEPTIONS_GCC_40 = NO;
    3232GCC_ENABLE_CPP_EXCEPTIONS_GCC_42 = NO;
    33 GCC_ENABLE_CPP_EXCEPTIONS_LLVM_GCC = NO;
     33GCC_ENABLE_CPP_EXCEPTIONS_LLVM_GCC_42 = NO;
    3434GCC_ENABLE_CPP_EXCEPTIONS_LLVM_COMPILER = YES;
    3535
  • trunk/Source/WebCore/ChangeLog

    r86597 r86598  
     12011-05-16  David Kilzer  <ddkilzer@apple.com>
     2
     3        <http://webkit.org/b/60913> C++ exceptions should not be enabled when building with llvm-gcc-4.2
     4        <rdar://problem/9446430>
     5
     6        Reviewed by Mark Rowe.
     7
     8        * Configurations/Base.xcconfig: Fixed typo.
     9
    1102011-05-16  Jon Lee  <jonlee@apple.com>
    211
  • trunk/Source/WebCore/Configurations/Base.xcconfig

    r85037 r86598  
    107107GCC_ENABLE_CPP_EXCEPTIONS_GCC_40 = NO;
    108108GCC_ENABLE_CPP_EXCEPTIONS_GCC_42 = NO;
    109 GCC_ENABLE_CPP_EXCEPTIONS_LLVM_GCC = NO;
     109GCC_ENABLE_CPP_EXCEPTIONS_LLVM_GCC_42 = NO;
    110110GCC_ENABLE_CPP_EXCEPTIONS_LLVM_COMPILER = YES;
    111111
  • trunk/Source/WebKit/mac/ChangeLog

    r86584 r86598  
     12011-05-16  David Kilzer  <ddkilzer@apple.com>
     2
     3        <http://webkit.org/b/60913> C++ exceptions should not be enabled when building with llvm-gcc-4.2
     4        <rdar://problem/9446430>
     5
     6        Reviewed by Mark Rowe.
     7
     8        * Configurations/Base.xcconfig: Fixed typo.
     9
    1102011-05-13  Jon Lee  <jonlee@apple.com>
    211
  • trunk/Source/WebKit/mac/Configurations/Base.xcconfig

    r85037 r86598  
    9595GCC_ENABLE_CPP_EXCEPTIONS_GCC_40 = NO;
    9696GCC_ENABLE_CPP_EXCEPTIONS_GCC_42 = NO;
    97 GCC_ENABLE_CPP_EXCEPTIONS_LLVM_GCC = NO;
     97GCC_ENABLE_CPP_EXCEPTIONS_LLVM_GCC_42 = NO;
    9898GCC_ENABLE_CPP_EXCEPTIONS_LLVM_COMPILER = YES;
    9999
  • trunk/Source/WebKit2/ChangeLog

    r86590 r86598  
     12011-05-16  David Kilzer  <ddkilzer@apple.com>
     2
     3        <http://webkit.org/b/60913> C++ exceptions should not be enabled when building with llvm-gcc-4.2
     4        <rdar://problem/9446430>
     5
     6        Reviewed by Mark Rowe.
     7
     8        * Configurations/Base.xcconfig: Fixed typo.
     9
    1102011-05-16  Anders Carlsson  <andersca@apple.com>
    211
  • trunk/Source/WebKit2/Configurations/Base.xcconfig

    r85037 r86598  
    8989GCC_ENABLE_CPP_EXCEPTIONS_GCC_40 = NO;
    9090GCC_ENABLE_CPP_EXCEPTIONS_GCC_42 = NO;
    91 GCC_ENABLE_CPP_EXCEPTIONS_LLVM_GCC = NO;
     91GCC_ENABLE_CPP_EXCEPTIONS_LLVM_GCC_42 = NO;
    9292GCC_ENABLE_CPP_EXCEPTIONS_LLVM_COMPILER = YES;
    9393
  • trunk/Tools/ChangeLog

    r86584 r86598  
     12011-05-16  David Kilzer  <ddkilzer@apple.com>
     2
     3        <http://webkit.org/b/60913> C++ exceptions should not be enabled when building with llvm-gcc-4.2
     4        <rdar://problem/9446430>
     5
     6        Reviewed by Mark Rowe.
     7
     8        * MiniBrowser/Configurations/Base.xcconfig: Fixed typo.
     9        * TestWebKitAPI/Configurations/Base.xcconfig: Ditto.
     10        * WebKitTestRunner/Configurations/Base.xcconfig: Ditto.
     11
    1122011-05-16  Jon Lee  <jonlee@apple.com>
    213
  • trunk/Tools/MiniBrowser/Configurations/Base.xcconfig

    r85037 r86598  
    4444GCC_ENABLE_CPP_EXCEPTIONS_GCC_40 = NO;
    4545GCC_ENABLE_CPP_EXCEPTIONS_GCC_42 = NO;
    46 GCC_ENABLE_CPP_EXCEPTIONS_LLVM_GCC = NO;
     46GCC_ENABLE_CPP_EXCEPTIONS_LLVM_GCC_42 = NO;
    4747GCC_ENABLE_CPP_EXCEPTIONS_LLVM_COMPILER = YES;
    4848
  • trunk/Tools/TestWebKitAPI/Configurations/Base.xcconfig

    r85037 r86598  
    4747GCC_ENABLE_CPP_EXCEPTIONS_GCC_40 = NO;
    4848GCC_ENABLE_CPP_EXCEPTIONS_GCC_42 = NO;
    49 GCC_ENABLE_CPP_EXCEPTIONS_LLVM_GCC = NO;
     49GCC_ENABLE_CPP_EXCEPTIONS_LLVM_GCC_42 = NO;
    5050GCC_ENABLE_CPP_EXCEPTIONS_LLVM_COMPILER = YES;
    5151
  • trunk/Tools/WebKitTestRunner/Configurations/Base.xcconfig

    r85037 r86598  
    4747GCC_ENABLE_CPP_EXCEPTIONS_GCC_40 = NO;
    4848GCC_ENABLE_CPP_EXCEPTIONS_GCC_42 = NO;
    49 GCC_ENABLE_CPP_EXCEPTIONS_LLVM_GCC = NO;
     49GCC_ENABLE_CPP_EXCEPTIONS_LLVM_GCC_42 = NO;
    5050GCC_ENABLE_CPP_EXCEPTIONS_LLVM_COMPILER = YES;
    5151
Note: See TracChangeset for help on using the changeset viewer.