Changeset 47983 in webkit for trunk/JavaScriptCore/wscript


Ignore:
Timestamp:
Sep 2, 2009, 11:28:30 AM (16 years ago)
Author:
[email protected]
Message:

waf build fixes for Windows/MSVC and Mac/Snow Leopard.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/wscript

    r46694 r47983  
    3838
    3939if building_on_win32:
    40     jscore_excludes.append('ExecutableAllocatorPosix.cpp')
    41     sources.append('jit/ExecutableAllocatorWin.cpp')
     40    jscore_excludes += ['ExecutableAllocatorPosix.cpp', 'MarkStackPosix.cpp']
     41    sources += ['jit/ExecutableAllocatorWin.cpp', 'runtime/MarkStackWin.cpp']
    4242else:
    4343    jscore_excludes.append('JSStringRefBSTR.cpp')
     
    7272    full_dirs = get_dirs_for_features(jscore_dir, features=[build_port], dirs=jscore_dirs)
    7373
    74     print 'full_dirs = %r' % full_dirs
    75 
    7674    includes = common_includes + full_dirs
    7775
     
    8280        source = sources,
    8381        target = 'jscore',
    84         uselib = 'WX ICU ' + waf_configname,
     82        uselib = 'WX ICU ' + get_config(),
    8583        uselib_local = '',
    8684        install_path = output_dir)
     
    9391        source = 'jsc.cpp',
    9492        target = 'jsc',
    95         uselib = 'WX ICU ' + waf_configname,
     93        uselib = 'WX ICU ' + get_config(),
    9694        uselib_local = 'jscore',
    9795        install_path = output_dir,
Note: See TracChangeset for help on using the changeset viewer.