Changeset 160111 in webkit


Ignore:
Timestamp:
Dec 4, 2013 11:33:15 AM (10 years ago)
Author:
aestes@apple.com
Message:

[iOS] Build projects with $(ARCHS_STANDARD_32_64_BIT)
https://bugs.webkit.org/show_bug.cgi?id=125236

Reviewed by Sam Weinig.

$(ARCHS_STANDARD_32_64_BIT) is what we want for both device and simulator builds.

Source/JavaScriptCore:

  • Configurations/DebugRelease.xcconfig:

Source/WebCore:

  • Configurations/DebugRelease.xcconfig:

Source/WebKit/mac:

  • Configurations/DebugRelease.xcconfig:
Location:
trunk/Source
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r160109 r160111  
     12013-12-04  Andy Estes  <aestes@apple.com>
     2
     3        [iOS] Build projects with $(ARCHS_STANDARD_32_64_BIT)
     4        https://bugs.webkit.org/show_bug.cgi?id=125236
     5
     6        Reviewed by Sam Weinig.
     7
     8        $(ARCHS_STANDARD_32_64_BIT) is what we want for both device and simulator builds.
     9
     10        * Configurations/DebugRelease.xcconfig:
     11
    1122013-12-03  Filip Pizlo  <fpizlo@apple.com>
    213
  • trunk/Source/JavaScriptCore/Configurations/DebugRelease.xcconfig

    r157987 r160111  
    2525#include "Base.xcconfig"
    2626
    27 ARCHS = $(ARCHS_$(PLATFORM_NAME));
    28 ARCHS_iphoneos = $(ARCHS_STANDARD_32_64_BIT);
    29 ARCHS_iphonesimulator = $(ARCHS_STANDARD_32_64_BIT);
    30 ARCHS_macosx = $(ARCHS_STANDARD_32_64_BIT);
     27ARCHS = $(ARCHS_STANDARD_32_64_BIT);
    3128
    3229ONLY_ACTIVE_ARCH = YES;
  • trunk/Source/WebCore/ChangeLog

    r160102 r160111  
     12013-12-04  Andy Estes  <aestes@apple.com>
     2
     3        [iOS] Build projects with $(ARCHS_STANDARD_32_64_BIT)
     4        https://bugs.webkit.org/show_bug.cgi?id=125236
     5
     6        Reviewed by Sam Weinig.
     7
     8        $(ARCHS_STANDARD_32_64_BIT) is what we want for both device and simulator builds.
     9
     10        * Configurations/DebugRelease.xcconfig:
     11
    1122013-12-04  Joseph Pecoraro  <pecoraro@apple.com>
    213
  • trunk/Source/WebCore/Configurations/DebugRelease.xcconfig

    r157987 r160111  
    2525#include "Base.xcconfig"
    2626
    27 ARCHS = $(ARCHS_$(PLATFORM_NAME));
    28 ARCHS_iphoneos = $(ARCHS_STANDARD_32_BIT);
    29 ARCHS_iphonesimulator = $(ARCHS_STANDARD_32_BIT);
    30 ARCHS_macosx = $(ARCHS_STANDARD_32_64_BIT);
     27ARCHS = $(ARCHS_STANDARD_32_64_BIT);
    3128
    3229ONLY_ACTIVE_ARCH = YES;
  • trunk/Source/WebKit/mac/ChangeLog

    r160099 r160111  
     12013-12-04  Andy Estes  <aestes@apple.com>
     2
     3        [iOS] Build projects with $(ARCHS_STANDARD_32_64_BIT)
     4        https://bugs.webkit.org/show_bug.cgi?id=125236
     5
     6        Reviewed by Sam Weinig.
     7
     8        $(ARCHS_STANDARD_32_64_BIT) is what we want for both device and simulator builds.
     9
     10        * Configurations/DebugRelease.xcconfig:
     11
    1122013-12-03  Joseph Pecoraro  <pecoraro@apple.com>
    213
  • trunk/Source/WebKit/mac/Configurations/DebugRelease.xcconfig

    r157987 r160111  
    2525#include "Base.xcconfig"
    2626
    27 ARCHS = $(ARCHS_$(PLATFORM_NAME));
    28 ARCHS_iphoneos = $(ARCHS_STANDARD_32_BIT);
    29 ARCHS_iphonesimulator = $(ARCHS_STANDARD_32_BIT);
    30 ARCHS_macosx = $(ARCHS_STANDARD_32_64_BIT);
     27ARCHS = $(ARCHS_STANDARD_32_64_BIT);
    3128
    3229ONLY_ACTIVE_ARCH = YES;
Note: See TracChangeset for help on using the changeset viewer.