Changeset 47983 in webkit for trunk/JavaScriptCore/wscript
- Timestamp:
- Sep 2, 2009, 11:28:30 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/wscript
r46694 r47983 38 38 39 39 if 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'] 42 42 else: 43 43 jscore_excludes.append('JSStringRefBSTR.cpp') … … 72 72 full_dirs = get_dirs_for_features(jscore_dir, features=[build_port], dirs=jscore_dirs) 73 73 74 print 'full_dirs = %r' % full_dirs75 76 74 includes = common_includes + full_dirs 77 75 … … 82 80 source = sources, 83 81 target = 'jscore', 84 uselib = 'WX ICU ' + waf_configname,82 uselib = 'WX ICU ' + get_config(), 85 83 uselib_local = '', 86 84 install_path = output_dir) … … 93 91 source = 'jsc.cpp', 94 92 target = 'jsc', 95 uselib = 'WX ICU ' + waf_configname,93 uselib = 'WX ICU ' + get_config(), 96 94 uselib_local = 'jscore', 97 95 install_path = output_dir,
Note:
See TracChangeset
for help on using the changeset viewer.