aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-09-23deframeworkify jsifier:functionStubAlon Zakai
2013-09-23deframeworkify jsifier:aliasAlon Zakai
2013-09-23deframeworkify jsifier:globalVariableAlon Zakai
2013-09-23remove unused type jsifying codeAlon Zakai
2013-09-23de-frameworkify analyzerAlon Zakai
2013-09-23fix asm coercion in store abortAlon Zakai
2013-09-23Fix Emscripten CMake toolchain to generate proper static library archive ↵Jukka Jylänki
files with the AR tool instead of building LLVM bitcode files for archive files. Fixes #1648.
2013-09-23Fix emcc to properly treat input filenames with Unix-style version ↵Jukka Jylänki
information at the end, e.g. 'libz.so.1.2.8'. Do not assume in the source -> LLVM bitcode compilation pass that all untested file suffixes would be assembly files. Related to #1648.
2013-09-23Make input file parsing in 'emcc' tool stricter. Don't silently fail if a ↵Jukka Jylänki
file is missing or is a bitcode file if an archive file was expected, but issue an error and abort. Related to #1648.
2013-09-22Remove "-U__GNUC__" flag to avoid incorrect measurements.ngld
2013-09-20Fix typo in URL.Bruce Mitchener
2013-09-19Implement missing 'space' formatting flagRanger Harke
This flag causes space (padding) to be reserved for the sign even if the number is positive. It is basically the same as the 'plus' flag except that a space is displayed instead of a plus sign. The 'plus' flag takes precedence.
2013-09-19Fix bug with forced display of sign on negative integersRanger Harke
The negative sign was displayed twice.
2013-09-19Fix bug with zero-padded negative integersRanger Harke
The zero padding was before the sign. It should be after.
2013-09-19Correct typo.ngld
2013-09-18generate valid code for segfaulting loads, not assignless abortsAlon Zakai
2013-09-18enable extra_info for standalone js_optimizer.pyAlon Zakai
2013-09-18allow js_optimizer.py to run standaloneAlon Zakai
2013-09-18Add a test and myself to AUTHORS.ngld
2013-09-18Fix #1632: Correctly handle the optional 0x prefix for hex numbers (%x/%X).ngld
2013-09-18Merge pull request #1630 from ngld/fix-resume-exceptionAlon Zakai
Fix EXCEPTION_CATCHING_WHITELIST (#1623)
2013-09-18handle memory initializer when there are deps added during preRunAlon Zakai
2013-09-18Add myself to AUTHORSngld
2013-09-18Merge pull request #1611 from juj/cmake_link_jsAlon Zakai
Cmake link js
2013-09-18Merge pull request #1628 from michaeljbishop/pread-fix2Alon Zakai
Fixes in pread()
2013-09-18Removed old test case and put a test case in a more appropriate area.Michael J. Bishop
tests/unistd/io.* --- Revert "Added to the test_files test to ensure the pread() functionality." This reverts commit 2ed2fb5df392251a0957543b920272b9b2ae7908.
2013-09-18Added to the test_files test to ensure the pread() functionality.Michael J. Bishop
2013-09-18Remove code duplication on CMake link macros.Jukka Jylänki
2013-09-18Add functions em_link_js_library(), em_link_pre_js() and em_link_post_js() ↵Jukka Jylänki
to support linking .js files to executables, while doing dependency tracking on filestamp modifications. For more info, see https://groups.google.com/forum/#!topic/emscripten-discuss/uRbTIB62V7s .
2013-09-17Fix #1166: Correct the amount of allocated memory for non-ascii strings in ↵ngld
ccallFunc().
2013-09-17Fix #1623: Add missing checks for EXCEPTION_CATCHING_WHITELIST.ngld
2013-09-17Fixes in pread()Michael J. Bishop
The bug occurs when pread() doesn't return 0 when asked to read an offset beyond its buffer. This behavior is explicitly documented at: http://pubs.opengroup.org/onlinepubs/000095399/functions/read.html > If the starting position is at or after the end-of-file, 0 > shall be returned
2013-09-17Implemented dprintf. (Fixes #1250)ngld
2013-09-17Updated library_sdl.jsngld
2013-09-16Integrate the new tool into emscriptenngld
Automatically compile struct_info.json and save the compiled version in the emscripten cache.
2013-09-16Merge pull request #1618 from sbalko/incomingAlon Zakai
Incoming
2013-09-16Started work on #1554ngld
Added a script to extract struct sizes and field offsets as well as constant (#define) values.
2013-09-14dynamically determine relooper heap size using RELOOPER_BUFFER_SIZE1.5.9Alon Zakai
2013-09-14Incorporating formatting suggestions from pull requestSoeren Balko
2013-09-13Merge pull request #1620 from waywardmonkeys/remove-cxx-mangled-catgetsAlon Zakai
Remove cxx mangled catgets / catopen / catclose.
2013-09-14Remove C++ mangled catgets / catopen / catclose.Bruce Mitchener
In the old headers, these were not extern "C", so they would show up mangled when built for C++. This is no longer the case with the new libc headers.
2013-09-13tolerate SDL_Delay in workersAlon Zakai
2013-09-13RELOOPER_BUFFER_SIZE to change the relooper buffer size easily1.5.8Alon Zakai
2013-09-13refactor memory initializer code to use run dependenciesfailureAlon Zakai
2013-09-13emscripten_async_load_scriptAlon Zakai
2013-09-13clear dependenciesFulfilled after useAlon Zakai
2013-09-13refactor code to handle when run dependencies reach 0Alon Zakai
2013-09-13remove unneeded varAlon Zakai
2013-09-13second enet fix to handle musl headers in emscriptenAlon Zakai
2013-09-13Merge pull request #1615 from waywardmonkeys/fix-preprocessor-usageAlon Zakai
Fix using emcc -E.