aboutsummaryrefslogtreecommitdiff
path: root/tools
AgeCommit message (Collapse)Author
2012-12-19Updated scripts to call python2 directly rather than relying on python ↵Alan Kligman
symlink pointing to the right place. See PEP394 for details on why this should be OK.
2012-12-19remove --remove-duplicatesAlon Zakai
2012-12-19tolerate people issuing link commands with duplicates in themAlon Zakai
2012-12-12do not try to eliminate phi variables, which are unsafe to be removed and ↵Alon Zakai
the llvm optimizer will remove anyhow if unused
2012-12-12make Building.is_* tests emit errors to stderrAlon Zakai
2012-12-12keep at least 'node' as the guess for nodeAlon Zakai
2012-12-10remove unneeded debug stuffAlon Zakai
2012-12-10add some link debug stuffAlon Zakai
2012-12-07add parts of system bitcode libraries when necessary, and refactor library ↵Alon Zakai
inclusion decision code
2012-12-04recursively traverse .a files until we have all we needAlon Zakai
2012-12-04only add in .o inside .a that are neededAlon Zakai
2012-11-26use hashlib instead of md5Alon Zakai
2012-11-22notice generated functions with $ in themAlon Zakai
2012-11-22fix test_js_optimizerAlon Zakai
2012-11-22fix bug in js optimizer on closured dataAlon Zakai
2012-11-22fix ll func identifying for chunking purposes, and add testing of jcache on ↵Alon Zakai
a large program
2012-11-22more carefully split out functions in js optimizerAlon Zakai
2012-11-22assert on generatedFunctions being there when we need itAlon Zakai
2012-11-21more jcache testing, and add newlines to ensure chunk separationAlon Zakai
2012-11-21finish js optimizer caching and add testsAlon Zakai
2012-11-21basic logic of jcache in js optimizerAlon Zakai
2012-11-21use chunkify in js optimizer, in preparation for jcachingAlon Zakai
2012-11-21cache emscript function chunksAlon Zakai
2012-11-21return chunks of text in chunkify to simplify the ap-iyAlon Zakai
2012-11-21fix chunking logic to generate >1 chunkAlon Zakai
2012-11-21improve chunkify to consider previous chunkings when cachingAlon Zakai
2012-11-21refactor chunking code and add function ident informationAlon Zakai
2012-11-21fix and test pre cachingAlon Zakai
2012-11-21basic jcache on pre with files+cPickleAlon Zakai
2012-11-21add more caching logic including short vs full keysAlon Zakai
2012-11-21basic logic and stubs for caching pre phaseAlon Zakai
2012-11-21set up parameter passing for jcacheAlon Zakai
2012-11-15prevent annoying warnings during relooper bootstrappingAlon Zakai
2012-11-14clean up test.llAlon Zakai
2012-11-14Fix typo in WindowsPopen.kill(). Avoid using returncode variable manually, ↵Jukka Jylänki
but just route through poll() instead.
2012-11-14Refactor Windows replacement for Popen to allow passing stdin to Popen ↵Jukka Jylänki
process, and poll() and kill(). Fixes tests other.test_fix_closure and other.test_warn_undefined on Windows.
2012-11-14Implement missing used functions on MockPopen to pass Windows tests ↵Jukka Jylänki
utilizing timeout_run().
2012-11-13only save temp files in EMCC_DEBUG_SAVE modeAlon Zakai
2012-11-13Merge pull request #703 from juj/cmakeAlon Zakai
Cmake support.
2012-11-13headless optionAlon Zakai
2012-11-13Rename CallProcess to call_process.Jukka Jylänki
2012-11-12On Windows, depending on the version of make, these calls have been observed ↵Jukka Jylänki
to fail with a "WindowsError: [Error 6] The handle is invalid", so be loud about it when this occurs. For more information, see http://bugs.python.org/issue3905 . Implement a workaround to Popen to avoid this issue.
2012-11-12Don't silently suppress received exceptions inside shared.building.is_ar and ↵Jukka Jylänki
shared.building.is_bitcode functions, but print information about them before returning False. On Windows, depending on the version of make, these calls have been observed to fail with a "WindowsError: [Error 6] The handle is invalid", so be loud about it when this occurs. For more information, see http://bugs.python.org/issue3905 .
2012-11-11alter version to bootstrap relooper1.0.1aAlon Zakai
2012-11-11use internal relooper sourcesAlon Zakai
2012-11-10clear cache and run sanity checks on version bumps, this will help with ↵1.0.1Alon Zakai
relooper updates etc.
2012-11-10disable closure on relooper - no noticeable speedup, but inlining causes ↵Alon Zakai
some stack overflows on large projects
2012-11-10make sure to fail if relooper bootstrap failedAlon Zakai
2012-11-10bootstrap relooperautomaticallyAlon Zakai
2012-11-08fix crash in js optimizerAlon Zakai