aboutsummaryrefslogtreecommitdiff
path: root/tools
AgeCommit message (Collapse)Author
2012-09-13Image and URL support in shell replayAlon Zakai
2012-09-13basic BlobBuilder support in shell replayAlon Zakai
2012-09-13fix handling of multiple worker modules in shell replayAlon Zakai
2012-09-12make all temp files be in TEMP_DIR from ~/.emscriptenAlon Zakai
2012-09-12debug prints in shell replayAlon Zakai
2012-09-12shell replay fixesAlon Zakai
2012-09-12idle handling and other fixes for shell replayAlon Zakai
2012-09-12script loading in shell replayAlon Zakai
2012-09-12Worker and misc fixes in shell replayAlon Zakai
2012-09-12events and audio in shell replayAlon Zakai
2012-09-12fake timeouts in shell replayAlon Zakai
2012-09-12initial xhr support in reproduceriter shellAlon Zakai
2012-09-11more dom in reproduceriterAlon Zakai
2012-09-11start to add dom shims for shell in reproduceriterAlon Zakai
2012-09-10use abspath in link() because we might chdir in the middleAlon Zakai
2012-09-10show frame std dev in benchmarkingAlon Zakai
2012-09-10typoAlon Zakai
2012-09-10reproduceriter fixesAlon Zakai
2012-09-10improve infrastructure in reproduceriterAlon Zakai
2012-09-10save Date.now and performance.now in reproduceriterAlon Zakai
2012-09-07call onFinish in reproduceriterAlon Zakai
2012-09-07make reproduceriter work on closured buildsAlon Zakai
2012-09-07get replay working in reproduceriterAlon Zakai
2012-09-07fix reproduceriter event savingAlon Zakai
2012-09-07fix recorderwriter recording bugsAlon Zakai
2012-09-07fix reproduceriter regexpingAlon Zakai
2012-09-07reproduceriter fixesAlon Zakai
2012-09-07complete initial writing of reproduceriterAlon Zakai
2012-09-06initial work on reproducer-rewriterAlon Zakai
2012-09-05Bitshift optimizer anticipates fns with switchesBenjamin Stover
Conflicts: AUTHORS
2012-08-25disable precise i32 multiplication even in -O0: too slowAlon Zakai
2012-08-25PRECISE_I32_MUL option for full precision in 32-bit multiplyAlon Zakai
2012-08-09change download messageAlon Zakai
2012-08-09show progress on datafile downloadAlon Zakai
2012-08-08only create new Uint8Arrays during preloading when actually necessaryAlon Zakai
2012-07-30fix file preloading with -o subdir/..Alon Zakai
2012-07-25Add LD to the variables replaced by emmakeJustin Kerk
2012-07-23always look for main in .a filesAlon Zakai
2012-07-22optional plugins for file packagerAlon Zakai
2012-07-18workaround for chromium bug 124926 in another necessary placeAlon Zakai
2012-07-18add runDependency tracking and fix detected bugsAlon Zakai
2012-07-18fix getAudioMimetypeAlon Zakai
2012-07-18use createPreloadedFile in file packagerAlon Zakai
2012-07-18refactor file preloading to happen in FS.createPreloadedFile, so that not ↵Alon Zakai
only file_packager preloading gets preloaded Images and Audios
2012-07-17check llvm version only when actually checking sanity - not on every call to ↵Alon Zakai
emcc
2012-07-16warn on wrong llvm versionAlon Zakai
2012-07-16add commented option to make crunch try a png input if crunching the dds failedAlon Zakai
2012-07-13Disable setting LIBTOOLBehdad Esfahbod
emlibtool is a big TODO right now. The only reason this was not causing problems is that autotools-generated configure does NOT get libtool from environment variables.
2012-07-13Set PKG_CONFIG_LIBDIR and PKG_CONFIG_PATHBehdad Esfahbod
Such that: 1. Packages installed into system/ or system/local are found by configure. 2. System packages are NOT found. This can be a pain sometimes. Can be overriden by setting EM_PKG_CONFIG_PATH to additional locations.
2012-07-13Look into system/local/include and system/local/lib tooBehdad Esfahbod
Now one can do: emconfigure ./configure --prefix=/path/to/emscripten/local And then make install to there, like a real /usr/local. No manual bitcode moving. Now if there was a way to change default prefix of configure using an env var...