diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-10-29 11:01:16 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-10-29 11:01:16 -0700 |
commit | 9025c624125d452dfa305a723b74ef7903da6233 (patch) | |
tree | 9e9fc1b41cafd99b0d9ec872a6146cfb79e81505 /tools/js_optimizer.py | |
parent | f3a52911bade886654c8d4df960f1a1ad169806e (diff) |
re-enable parallelization of js optimizer on windows
Diffstat (limited to 'tools/js_optimizer.py')
-rw-r--r-- | tools/js_optimizer.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/js_optimizer.py b/tools/js_optimizer.py index 0c4eb7be..b98ff921 100644 --- a/tools/js_optimizer.py +++ b/tools/js_optimizer.py @@ -69,8 +69,8 @@ def run(filename, passes, js_engine): cores = min(multiprocessing.cpu_count(), chunks) if cores < 2: fail = 'python reports you have %d cores' % cores - elif WINDOWS: - fail = 'windows (see issue 663)' + #elif WINDOWS: + # fail = 'windows (see issue 663)' # This seems fixed with adding emcc.py that imports this file if not fail: # We can parallelize |