Changeset 60315 in webkit for trunk/JavaScriptCore/wscript
- Timestamp:
- May 27, 2010, 12:02:53 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/wscript
r56309 r60315 30 30 from settings import * 31 31 32 jscore_excludes = ['jsc.cpp', 'ucptable.cpp' ]32 jscore_excludes = ['jsc.cpp', 'ucptable.cpp','ProfilerServer.mm'] 33 33 jscore_excludes.extend(get_excludes(jscore_dir, ['*Brew.cpp', '*CF.cpp', '*Symbian.cpp'])) 34 34 … … 56 56 os.chdir(derived_sources_dir) 57 57 58 # DerivedSources.make expects Cygwin (i.e. Unix-style) python, so use that instead. 59 if building_on_win32: 60 oldpath = os.environ["PATH"] 61 os.environ["PATH"] = "/usr/bin" + os.pathsep + os.environ["PATH"] 58 62 command = 'make -f %s/DerivedSources.make JavaScriptCore=%s BUILT_PRODUCTS_DIR=%s all FEATURE_DEFINES="%s"' % (js_dir, js_dir, js_dir, ' '.join(feature_defines)) 59 63 os.system(command) 64 if building_on_win32: 65 os.environ["PATH"] = oldpath 60 66 os.chdir(olddir) 61 67 … … 87 93 88 94 jscore.find_sources_in_dirs(full_dirs, excludes = jscore_excludes) 95 89 96 90 97 obj = bld.new_task_gen(
Note:
See TracChangeset
for help on using the changeset viewer.