aboutsummaryrefslogtreecommitdiff
path: root/tools
AgeCommit message (Collapse)Author
2013-05-16enable aliasing function pointers by default in -O2Alon Zakai
2013-05-10do not eliminate if there is a switchAlon Zakai
2013-05-10only recurse on decreasing uses on locals, and clear out names to avoid ↵Alon Zakai
confusion later
2013-05-10recursively remove variables with no uses in eliminatorAlon Zakai
2013-05-10add FORCE_ALIGNED_MEMORY=1 to -O3Alon Zakai
2013-05-09Also remove #define __ELF__ when building using NaCl triple.Jukka Jylänki
2013-05-09Remove __pnacl__ #define as well.Jukka Jylänki
2013-05-09Remove the __native_client__ system define when using NaCl triple. ↵Jukka Jylänki
Emscripten does not implement Google Native Client/Pepper APIs.
2013-05-07recognize the double-to-i64 bitcast pattern as having no side effects in ↵Alon Zakai
eliminator
2013-05-07fix mishandling of inference of global var typesAlon Zakai
2013-05-07infer untyped variables in js-optimizer.js by origin variable's type if they ↵Alon Zakai
are just a copy
2013-05-07switch to le32 target by default1.4.3Alon Zakai
2013-05-05generalize customizeVTable to support asmAlon Zakai
2013-05-03use sys.executableAlon Zakai
2013-05-03Remove executable permissions on simple filesSylvestre Ledru
2013-05-03use -fno-threadsafe-statics, issue #1128Alon Zakai
2013-05-03fix some logging usesAlon Zakai
2013-05-03tweak some logging levelsAlon Zakai
2013-05-03Displays usage when no argument is passed.Éloi Rivard
2013-05-03* Added some colors to messages displayed from python files.Éloi Rivard
2013-05-021.4.21.4.2Alon Zakai
2013-05-02check sanity later in test runner, so we can know env settings, and do not ↵Alon Zakai
needless tear down le32 stuff
2013-05-01TODOAlon Zakai
2013-05-01Merge pull request #1117 from rib/wip/coglAlon Zakai
Enable simple Cogl based apps by fixing some SDL_GL_GetProcAddress issues
2013-05-01Merge pull request #1098 from LCID-Fire/wrapper_exit_code_fixAlon Zakai
Build wrapper exit code fix
2013-04-30check for need to clear cache even in EMCC_DEBUG=1 mode, which forces sanity ↵Alon Zakai
checks
2013-04-30add support for changing the llvm target using EMCC_LLVM_TARGET in the envAlon Zakai
2013-04-30look for python2 before python for default .emscriptenRobert Bragg
emscripten requires python 2 but some systems have multiple versions of python installed and the 'python' binary will correspond to python 3. We now explicitly look for a python2 first when setting up a default .emscripten config file.
2013-04-30switch back to x86 target in preparation to merge to incomingAlon Zakai
2013-04-30store target in sanity file, so changing it causes the cache to be flushedAlon Zakai
2013-04-29bump version1.4.1Alon Zakai
2013-04-29use le32-unknown-nacl tripleAlon Zakai
2013-04-29Bump version.1.3.8Bruce Mitchener
2013-04-27Explicitly refer to CalledProcessError with its package name.Andreas Bergmeier
2013-04-25Change to fit in with Alon's coding style.Andreas Bergmeier
2013-04-25Change `Building.make` and `Building.configure` to raise a ↵Andreas Bergmeier
`CalledProcessError` when the underlying command's `returncode` is not 0. Handle all calls inside of `shared.py` to ignore the error, so behavior does not change. Handle error in `emmake` and `emconfigure`, so these exit with the `returncode` of the underlying command.
2013-04-25Try/catch around idb open.Alan Kligman
2013-04-25If caching fails, proceed to process package data.Alan Kligman
2013-04-25If there's a problem, fall back to default non-cache loading from remote.Alan Kligman
2013-04-25Add browser.test_preload_caching to unit tests. Replace modified-time check ↵Alan Kligman
with uuid check for cached packages, and remove HEAD XHR.
2013-04-25Fix incorrect cache logic (probably copy pasta error). Add ↵Alan Kligman
Module.preloadResults to store preload stats (for testing purposes).
2013-04-25Updated documentation for --use-preload-cache.Alan Kligman
2013-04-25Fix broken unit tests (browser.test_sdl_image_compressed, ↵Alan Kligman
browser.test_preload_file, browser.compressed_file). Fix style issues. Move some branch-specific code into the branch, rather than having it outside.
2013-04-25Fix missing parameter in cacheRemotePackage invocation. Remove debug ↵Alan Kligman
console.log.
2013-04-25Add --use-preload-cache flag to enable indexeddb preload cache. Defaults to ↵Alan Kligman
original behaviour.
2013-04-25Add no-cache to HEAD request.Alan Kligman
2013-04-25Preloading script now uses indexeddb to cache asset packages. Will load them ↵Alan Kligman
from indexeddb if possible.
2013-04-23Merge pull request #1063 from waywardmonkeys/musl-libc1.3.7Alon Zakai
Add wchar and multibyte libc functions
2013-04-23add a define of __EMSCRIPTEN__Alon Zakai
2013-04-23Merge pull request #1086 from waywardmonkeys/llvm-root-guessingAlon Zakai
Better guessing for LLVM_ROOT.