Changeset 54043 in webkit for trunk/JavaScriptCore/wscript


Ignore:
Timestamp:
Jan 28, 2010, 10:11:21 PM (15 years ago)
Author:
[email protected]
Message:

[wx] Build fix for MSW, use ThreadingWin.cpp as the Windows pthreads implementation
implements pthread_t in a way that makes it impossible to check its validity,
which is needed by ThreadingPthreads.cpp.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/wscript

    r51423 r54043  
    3535sources = []
    3636
    37 jscore_excludes.extend(get_excludes(jscore_dir, ['*Win.cpp', '*None.cpp']))
     37jscore_excludes.extend(get_excludes(jscore_dir, ['*None.cpp']))
    3838
    3939if building_on_win32:
    40     jscore_excludes += ['ExecutableAllocatorPosix.cpp', 'MarkStackPosix.cpp']
     40    jscore_excludes += ['ExecutableAllocatorPosix.cpp', 'MarkStackPosix.cpp', 'ThreadingPthreads.cpp']
    4141    sources += ['jit/ExecutableAllocatorWin.cpp', 'runtime/MarkStackWin.cpp']
    4242else:
    4343    jscore_excludes.append('JSStringRefBSTR.cpp')
     44    jscore_excludes.extend(get_excludes(jscore_dir, ['*Win.cpp']))
    4445
    4546def generate_jscore_derived_sources():
Note: See TracChangeset for help on using the changeset viewer.