aboutsummaryrefslogtreecommitdiff
path: root/tools
AgeCommit message (Collapse)Author
2014-01-04fix some relooper compiler warnings and update reftests for previous fixes1.8.3Alon Zakai
2014-01-03release 1.8.21.8.2Alon Zakai
2014-01-03make sure to give Ids to split blocks in relooper1.8.1Alon Zakai
2013-12-31sanity check for js backend in fastcompAlon Zakai
2013-12-30disable jcache in fastcomp, and fake emscripten_jcache_printfAlon Zakai
2013-12-28optimize relooper id counters1.8.0Alon Zakai
2013-12-27handle if-chains without an else in the outlinerAlon Zakai
2013-12-26support for optional complete emulation in relooper1.7.9Alon Zakai
2013-12-25Merge pull request #1943 from volo-zyko/incomingjuj
Fixed small problems which exhibit themself when building projects with ...
2013-12-24remove outdated commentAlon Zakai
2013-12-24Fixed small problems which exhibit themself when building projects with too ↵Volo Zyko
many source files. When there are too many source files and one builds static libraray cmake splits the whole list of files into several invocations of library archiver. In order this to work cmake needs to know both how to create and how to append to archive. Another related issue is that emscripten code fails when links a final javascript code if a command line of a link command is too long (this 'too long' is very OS dependent). Related discussion can be found in issue #1931. Conflicts: AUTHORS
2013-12-23fix size limit in limit_size, necessary for s_0_0.test_safe_heapAlon Zakai
2013-12-23make eliminator not get confused by calls without a return but with a coercionAlon Zakai
2013-12-23don't get confused by temporary empty nodes when calculating assigns in the ↵Alon Zakai
loop variable optimizer
2013-12-23fix bug where close-together tempDoublePtr operations could cross each otherAlon Zakai
2013-12-22comment on how tempDoublePtr is optimizedAlon Zakai
2013-12-20fix file packagerAlon Zakai
2013-12-20Merge pull request #1922 from coolwanglu/embed_dot_filesAlon Zakai
--exclude-file
2013-12-19Optimize away masks on stores to HEAP8 and HEAP16.Dan Gohman
Optimize HEAP8[i] = x & 255 to HEAP8[i] = x, and similar for HEAP16.
2013-12-17fix parameter checkLu Wang
2013-12-16Merge branch 'em_config' of github.com:juj/emscripten into incomingAlon Zakai
Conflicts: emcc
2013-12-16use all cpu cores when building libraries in test runnerAlon Zakai
2013-12-14fnmatch support fullpathLu Wang
2013-12-14--exclude-fileLu Wang
2013-12-13Fix an issue with the --em-config cmdline option where the option was not ↵Jukka Jylänki
seen by child processes spawned by emcc. To make sure all child processes see the same config file, the --em-config parameter is stored in the environment for current and child processes.
2013-12-13Add new emcc command line parameter --em-config that allows specifying the ↵Jukka Jylänki
location of the .emscripten configuration file from the command line. This overrides and has the same meaning as the environment variable EM_CONFIG.
2013-12-12skip sanity checks if EM_CONFIG is used instead of normal ~/.emscriptenAlon Zakai
2013-12-12move tests/hello_world.js to src, so tests/ folder is not needed for sanity ↵Alon Zakai
checks
2013-12-06fix creation of temp dir in EMCC_DEBUG for the first timeAlon Zakai
2013-12-02move import in cache.py to avoid module interdependencies; fallout from ↵Alon Zakai
0f5135e436 breaking test_llvm_nativizer
2013-12-02fix file preloading in workers and add testAlon Zakai
2013-12-01fix for pull #1882Alon Zakai
2013-12-01Introduce safe_ensure_dirs as a safe os.makedirs replacement.Andreas Bergmeier
It only uses os.makedirs call, which is more atomic than calling 2 procs. Thus exception due to already existent directory should not longer occur.
2013-11-26Prevent Cache.ensure from throwing an error, while the directory already exists.Andreas Bergmeier
2013-11-25don't bootstrap relooper to js if we are using fastcompAlon Zakai
2013-11-24support for ignoring nacl intrinsicsAlon Zakai
2013-11-19hackish emscript_fast toolchain integrationsAlon Zakai
2013-11-18version 1.7.81.7.8Alon Zakai
2013-11-18Merge pull request #1831 from dinibu/dependency-fix-1820Alon Zakai
Further changes for issue #1732
2013-11-17Add a default setting line for running crunch tool, primarily from CRUNCH ↵Jukka Jylänki
env var, and secondarily from PATH.
2013-11-17Adjust split.py tool logic for generating output filenames to not generate ↵Jukka Jylänki
the full absolute path names to the splitted filenames. This fixes a Windows problem where invalid path concatenations like 'somethingC:/projects/emscripten/hello_world.js' would be generated, and shortens the path structure to not contain redundant directory names. Fixes test browser.test_split_in_source_filenames on Windows.
2013-11-17Fixed timestamps on object files extracted from archives during link.Dominic Wong
This affects builds that use absolute paths to object files when adding to library archives, causing unnecessary archives.
2013-11-15precise clock_gettime when not using CLOCK_REALTIME; fixes #17951.7.7Alon Zakai
2013-11-14emit ll from llvm opt directly, to skip writing and reading all the bitcodeAlon Zakai
2013-11-14Merge branch 'regex-impl' of github.com:waywardmonkeys/emscripten into incoming1.7.6Alon Zakai
Conflicts: tools/shared.py
2013-11-12version 1.7.51.7.5Alon Zakai
2013-11-11version 1.7.41.7.4Alon Zakai
2013-11-11version 1.7.31.7.3Alon Zakai
2013-11-11Merge branch 'incoming' into f32Alon Zakai
2013-11-11minify in asm arg coercions that denormalizeAsm generates, to handle ↵Alon Zakai
Math.fround calls