Changeset 41698 in webkit


Ignore:
Timestamp:
Mar 13, 2009 11:17:34 PM (15 years ago)
Author:
mrowe@apple.com
Message:

Take advantage of the ability of recent versions of Xcode to easily switch the active
architecture.

Rubber-stamped by Dan Bernstein.

  • Configurations/DebugRelease.xcconfig:
Location:
trunk
Files:
10 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r41695 r41698  
     12009-03-13  Mark Rowe  <mrowe@apple.com>
     2
     3        Rubber-stamped by Dan Bernstein.
     4
     5        Take advantage of the ability of recent versions of Xcode to easily switch the active
     6        architecture.
     7
     8        * Configurations/DebugRelease.xcconfig:
     9
    1102009-03-13  Mark Rowe  <mrowe@apple.com>
    211
  • trunk/JavaScriptCore/Configurations/DebugRelease.xcconfig

    r39331 r41698  
    11#include "Base.xcconfig"
    2 ARCHS = $(NATIVE_ARCH);
     2
     3ARCHS = $(ARCHS_$(MAC_OS_X_VERSION_MAJOR));
     4ARCHS_ = $(ARCHS_1040);
     5ARCHS_1040 = $(NATIVE_ARCH);
     6ARCHS_1050 = $(NATIVE_ARCH);
     7ARCHS_1060 = $(ARCHS_STANDARD_32_64_BIT);
     8
     9ONLY_ACTIVE_ARCH = YES;
    310
    411MACOSX_DEPLOYMENT_TARGET = $(MACOSX_DEPLOYMENT_TARGET_$(MAC_OS_X_VERSION_MAJOR));
  • trunk/JavaScriptGlue/ChangeLog

    r41177 r41698  
     12009-03-13  Mark Rowe  <mrowe@apple.com>
     2
     3        Rubber-stamped by Dan Bernstein.
     4
     5        Take advantage of the ability of recent versions of Xcode to easily switch the active
     6        architecture.
     7
     8        * Configurations/DebugRelease.xcconfig:
     9
    1102009-02-24  Mark Rowe  <mrowe@apple.com>
    211
  • trunk/JavaScriptGlue/Configurations/DebugRelease.xcconfig

    r39331 r41698  
    11#include "Base.xcconfig"
    2 ARCHS = $(NATIVE_ARCH);
     2
     3ARCHS = $(ARCHS_$(MAC_OS_X_VERSION_MAJOR));
     4ARCHS_ = $(ARCHS_1040);
     5ARCHS_1040 = $(NATIVE_ARCH);
     6ARCHS_1050 = $(NATIVE_ARCH);
     7ARCHS_1060 = $(ARCHS_STANDARD_32_64_BIT);
     8
     9ONLY_ACTIVE_ARCH = YES;
    310
    411MACOSX_DEPLOYMENT_TARGET = $(MACOSX_DEPLOYMENT_TARGET_$(MAC_OS_X_VERSION_MAJOR));
  • trunk/WebCore/ChangeLog

    r41694 r41698  
     12009-03-13  Mark Rowe  <mrowe@apple.com>
     2
     3        Rubber-stamped by Dan Bernstein.
     4
     5        Take advantage of the ability of recent versions of Xcode to easily switch the active
     6        architecture.
     7
     8        * Configurations/DebugRelease.xcconfig:
     9
    1102009-03-13  John Abd-El-Malek  <jam@google.com>
    211
  • trunk/WebCore/Configurations/DebugRelease.xcconfig

    r39331 r41698  
    11#include "Base.xcconfig"
    2 ARCHS = $(NATIVE_ARCH);
     2
     3ARCHS = $(ARCHS_$(MAC_OS_X_VERSION_MAJOR));
     4ARCHS_ = $(ARCHS_1040);
     5ARCHS_1040 = $(NATIVE_ARCH);
     6ARCHS_1050 = $(NATIVE_ARCH);
     7ARCHS_1060 = $(ARCHS_STANDARD_32_64_BIT);
     8
     9ONLY_ACTIVE_ARCH = YES;
    310
    411MACOSX_DEPLOYMENT_TARGET = $(MACOSX_DEPLOYMENT_TARGET_$(MAC_OS_X_VERSION_MAJOR));
  • trunk/WebKit/mac/ChangeLog

    r41688 r41698  
     12009-03-13  Mark Rowe  <mrowe@apple.com>
     2
     3        Rubber-stamped by Dan Bernstein.
     4
     5        Take advantage of the ability of recent versions of Xcode to easily switch the active
     6        architecture.
     7
     8        * Configurations/DebugRelease.xcconfig:
     9
    1102009-03-13  Anders Carlsson  <andersca@apple.com>
    211
  • trunk/WebKit/mac/Configurations/DebugRelease.xcconfig

    r39331 r41698  
    11#include "Base.xcconfig"
    2 ARCHS = $(NATIVE_ARCH);
     2
     3ARCHS = $(ARCHS_$(MAC_OS_X_VERSION_MAJOR));
     4ARCHS_ = $(ARCHS_1040);
     5ARCHS_1040 = $(NATIVE_ARCH);
     6ARCHS_1050 = $(NATIVE_ARCH);
     7ARCHS_1060 = $(ARCHS_STANDARD_32_64_BIT);
     8
     9ONLY_ACTIVE_ARCH = YES;
    310
    411MACOSX_DEPLOYMENT_TARGET = $(MACOSX_DEPLOYMENT_TARGET_$(MAC_OS_X_VERSION_MAJOR));
  • trunk/WebKitTools/ChangeLog

    r41696 r41698  
     12009-03-13  Mark Rowe  <mrowe@apple.com>
     2
     3        Rubber-stamped by Dan Bernstein.
     4
     5        Take advantage of the ability of recent versions of Xcode to easily switch the active
     6        architecture.
     7
     8        * DumpRenderTree/mac/Configurations/DebugRelease.xcconfig:
     9
    1102009-03-13  Mark Rowe  <mrowe@apple.com>
    211
  • trunk/WebKitTools/DumpRenderTree/mac/Configurations/DebugRelease.xcconfig

    r38028 r41698  
    11#include "Base.xcconfig"
    2 ARCHS = $(NATIVE_ARCH);
     2
     3ARCHS = $(ARCHS_$(MAC_OS_X_VERSION_MAJOR));
     4ARCHS_ = $(ARCHS_1040);
     5ARCHS_1040 = $(NATIVE_ARCH);
     6ARCHS_1050 = $(NATIVE_ARCH);
     7ARCHS_1060 = $(ARCHS_STANDARD_32_64_BIT);
     8
     9ONLY_ACTIVE_ARCH = YES;
    310
    411MACOSX_DEPLOYMENT_TARGET = $(MACOSX_DEPLOYMENT_TARGET_$(MAC_OS_X_VERSION_MAJOR))
    5 MACOSX_DEPLOYMENT_TARGET_ = 10.4
    6 MACOSX_DEPLOYMENT_TARGET_1040 = 10.4
    7 MACOSX_DEPLOYMENT_TARGET_1050 = 10.5
     12MACOSX_DEPLOYMENT_TARGET_ = 10.4;
     13MACOSX_DEPLOYMENT_TARGET_1040 = 10.4;
     14MACOSX_DEPLOYMENT_TARGET_1050 = 10.5;
     15MACOSX_DEPLOYMENT_TARGET_1060 = 10.6;
Note: See TracChangeset for help on using the changeset viewer.