Changeset 237484 in webkit


Ignore:
Timestamp:
Oct 26, 2018 3:02:54 PM (5 years ago)
Author:
Tadeu Zagallo
Message:

Gardening: Build fix after r237479.
https://bugs.webkit.org/show_bug.cgi?id=187373

Unreviewed.

  • Configurations/JSC.xcconfig:
  • JavaScriptCore.xcodeproj/project.pbxproj:
  • llint/LLIntData.cpp:

(JSC::LLInt::initialize):

Location:
trunk/Source/JavaScriptCore
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r237479 r237484  
     12018-10-26  Tadeu Zagallo  <tzagallo@apple.com>
     2
     3        Gardening: Build fix after r237479.
     4        https://bugs.webkit.org/show_bug.cgi?id=187373
     5
     6        Unreviewed.
     7
     8        * Configurations/JSC.xcconfig:
     9        * JavaScriptCore.xcodeproj/project.pbxproj:
     10        * llint/LLIntData.cpp:
     11        (JSC::LLInt::initialize):
     12
    1132018-10-26  Tadeu Zagallo  <tzagallo@apple.com>
    214
  • trunk/Source/JavaScriptCore/Configurations/JSC.xcconfig

    r234576 r237484  
    3838// Explicitly add the PrivateHeaders directory to the search path so that generated header files can be found in production builds.
    3939HEADER_SEARCH_PATHS = "$(JAVASCRIPTCORE_FRAMEWORKS_DIR)/JavaScriptCore.framework/PrivateHeaders" $(inherited);
     40HEADER_SEARCH_PATHS = "${BUILT_PRODUCTS_DIR}/DerivedSources/JavaScriptCore" $(HEADER_SEARCH_PATHS);
  • trunk/Source/JavaScriptCore/JavaScriptCore.xcodeproj/project.pbxproj

    r237479 r237484  
    18641864                        remoteGlobalIDString = 0F4680A914BA7FD900BFE272;
    18651865                        remoteInfo = "LLInt Offsets";
     1866                };
     1867                14013B752183C01E00999946 /* PBXContainerItemProxy */ = {
     1868                        isa = PBXContainerItemProxy;
     1869                        containerPortal = 0867D690FE84028FC02AAC07 /* Project object */;
     1870                        proxyType = 1;
     1871                        remoteGlobalIDString = 65FB3F6609D11E9100F49DEB;
     1872                        remoteInfo = "Derived Sources";
    18661873                };
    18671874                14BD6883215191310050DAFF /* PBXContainerItemProxy */ = {
     
    99749981                        );
    99759982                        dependencies = (
     9983                                14013B762183C01E00999946 /* PBXTargetDependency */,
    99769984                        );
    99779985                        name = jsc;
     
    1058910597                        targetProxy = 0FF922D214F46B2F0041A24E /* PBXContainerItemProxy */;
    1059010598                };
     10599                14013B762183C01E00999946 /* PBXTargetDependency */ = {
     10600                        isa = PBXTargetDependency;
     10601                        target = 65FB3F6609D11E9100F49DEB /* Derived Sources */;
     10602                        targetProxy = 14013B752183C01E00999946 /* PBXContainerItemProxy */;
     10603                };
    1059110604                14BD6882215191310050DAFF /* PBXTargetDependency */ = {
    1059210605                        isa = PBXTargetDependency;
  • trunk/Source/JavaScriptCore/llint/LLIntData.cpp

    r237479 r237484  
    5252Opcode g_opcodeMapWide[numOpcodeIDs] = { };
    5353
    54 #if ENABLE(JIT)
     54#if !ENABLE(C_LOOP)
    5555extern "C" void llint_entry(void*, void*);
    5656#endif
     
    6161    CLoop::initialize();
    6262
    63 #else // ENABLE(JIT)
     63#else // !ENABLE(C_LOOP)
    6464    llint_entry(&g_opcodeMap, &g_opcodeMapWide);
    6565
     
    7272    for (int i = 0; i < maxOpcodeLength + 1; ++i)
    7373        Data::s_exceptionInstructions[i] = llint_throw_from_slow_path_trampoline;
    74 #endif // ENABLE(JIT)
     74#endif // ENABLE(C_LOOP)
    7575}
    7676
Note: See TracChangeset for help on using the changeset viewer.