aboutsummaryrefslogtreecommitdiff
path: root/tools
AgeCommit message (Collapse)Author
2012-10-23integrate eliminator as js optimizer passAlon Zakai
2012-10-23include eliminator as js optimizer passAlon Zakai
2012-10-23remove unneeded js optimizer re-parseAlon Zakai
2012-10-23optimize newline removal in eliminatorAlon Zakai
2012-10-23more misc eliminator optimizationsAlon Zakai
2012-10-23misc eliminator optimizationsAlon Zakai
2012-10-23tiny eliminator optimizationAlon Zakai
2012-10-23simplify eliminatorAlon Zakai
2012-10-23rewrite eliminator in jsAlon Zakai
2012-10-22add eliminator testAlon Zakai
2012-10-20check node version is at least 0.6.8, which is the first to not have v8 bug ↵Alon Zakai
1895; enable crankshaft in js optimizer for additional speed
2012-10-20implement simplifyZeroComp js optimizer pass, not yet executedAlon Zakai
2012-10-20restore workaround for v8 bug 1895Alon Zakai
2012-10-17fix closure error in file packagerAlon Zakai
2012-10-17split up very large js files when passing them into js-optimizer and ↵Alon Zakai
eliminator, to allow optimizing very large files without node hitting out-of-memory
2012-10-17remove unneeded node checksAlon Zakai
2012-10-17stop working around v8 bug 1985 which was fixed a while agoAlon Zakai
2012-10-17allow changing java heap size for closure via JAVA_HEAP_SIZE env varAlon Zakai
2012-10-17improve node autodetectionAlon Zakai
2012-10-17Don't explode in emconfigure if no args are passedRiccardo Magliocchetti
2012-10-14handle .a with identically named .o ; fixes #637Alon Zakai
2012-10-13update coffeescript to d8905e2f8799931013e227b869b1c6f6c85122f0Alon Zakai
2012-10-01fix file paths with --embed, fixes #597Alon Zakai
2012-09-29Merge pull request #594 from larsxschneider/lars/add-split-optionAlon Zakai
Add emcc option "--split <size>" to split javascript file.
2012-09-28note on file packagerAlon Zakai
2012-09-28workaround for libcxx --std=c++11 issueAlon Zakai
2012-09-26autoguess ~/.emscripten values on first run, possibly fixes #593Alon Zakai
2012-09-26remove misleading top line in settings when copying it to ~/.emscriptenAlon Zakai
2012-09-26Merge pull request #581 from LCID-Fire/debian_clang_checkAlon Zakai
Extract check_clang_version into an own function and correct checking so...
2012-09-26Add emcc option "--split <size>" to split javascript file.Lars Schneider
Splits the resulting javascript file into pieces to ease debugging. This option only works if Javascript is generated (target -o <name>.js). Files with function declarations must be loaded before main file upon execution. Without "-g" option: Creates files with function declarations up to the given size with the suffix "_functions.partxxx.js" and a main file with the suffix ".js". With "-g" option: Recreates the directory structure of the C source files and stores function declarations in their respective C files with the suffix ".js". If such a file exceeds the given size, files with the suffix ".partxxx.js" are created. The main file resides in the base directory and has the suffix ".js".
2012-09-25add workaround for older node versionsAlon Zakai
2012-09-25Support loading emscripten argument filenames with relative pathsChad Austin
2012-09-26Make check_clang_version return a bool value.LCID Fire
2012-09-24improve av workaround in file packagerAlon Zakai
2012-09-24make with statement in shared.py work in python 2.6Alon Zakai
2012-09-24commented option to add verbose logging to makeAlon Zakai
2012-09-24fix python conventionsAlon Zakai
2012-09-24Merge pull request #582 from LCID-Fire/build_error_outputAlon Zakai
Reworked `build_library`:
2012-09-24better progress reporting with multiple datafile downloadsAlon Zakai
2012-09-23Reworked `build_library`:LCID Fire
- Prevent file handle leaking - Print first error log when second build attempt fails (way easier to debug/analyze)
2012-09-22move settings.py to a less conspicuous place and rename it, to avoid confusionAlon Zakai
2012-09-22Extract check_clang_version into an own function and correct checking so it ↵LCID Fire
works with Debian, too. Version string in Debian is: "Debian clang version"!
2012-09-21add libcxxabi headers to include pathAlon Zakai
2012-09-21file packager docsAlon Zakai
2012-09-21Merge pull request #577 from LCID-Fire/scons_environment_pathAlon Zakai
Make EMSCRIPTEN_ROOT path available in Environment
2012-09-21workaround in file packager for silly antivirus programsAlon Zakai
2012-09-21use createPath in file packager to allow separate asset bundles to play ↵Alon Zakai
nicely with shared folders
2012-09-21allow loading multiple asset bundles / outputs of file packagerAlon Zakai
2012-09-21closurize file packager outputAlon Zakai
2012-09-21Make EMSCRIPTEN_ROOT path available in EnvironmentLCID Fire