aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-06-27Merge pull request #35 from max99x/masterkripken
Implemented strtod(), printf(); fixed bug in IEEEUnHex()
2011-06-28Replaced brainded float formatting with a much cleaner (and more precise) ↵max99x
version.
2011-06-27Merge remote-tracking branch 'upstream/master'max99x
2011-06-27Fixed some strict mode problems; added test for -Infinity.max99x
2011-06-27Fixed unsigned number printing; updated Lua test with correct format (same ↵max99x
as GCC produces).
2011-06-27Added *.pyc to .gitignore.max99x
2011-06-27Minor printf() bugfix.max99x
2011-06-27Fixed a few boneheaded mistakes; added test for strtod().max99x
2011-06-27Implemented a GCC-alike printf/_formatString.max99x
2011-06-27Support for negative infinity in IEEEUnHex().max99x
2011-06-26cleanup: do indexizeFunctions inside finalizeLLVMParameterAlon Zakai
2011-06-26optimize inclusion of default library itemsAlon Zakai
2011-06-27Added exponent handling to strtod().max99x
2011-06-26fix breakage by indexing ret valuesAlon Zakai
2011-06-25Merge pull request #32 from max99x/masterkripken
Basic dynamic loading support
2011-06-26Fixes for review notes.max99x
2011-06-26Tests for dlfch.h.max99x
2011-06-25optional sign correction for SDL pixel data as we read itAlon Zakai
2011-06-26Minor polish:max99x
* Fixed loose "in" check for library functions in jsifier.js. * Made __globalConstructor__ a var in preamble_sharedlib.js.
2011-06-26Merge remote-tracking branch 'upstream/master'max99x
2011-06-26Prevented shared libs from overwriting __globalConstructor__.max99x
2011-06-25SDL commentsAlon Zakai
2011-06-26Added support for including the whole library.max99x
2011-06-25make globalConstructor a varAlon Zakai
2011-06-26Merge remote-tracking branch 'upstream/master'max99x
2011-06-26Fixed function indexing issues between parent and child;max99x
Child no longer includes library, using the parent's instead.
2011-06-25allow exporting library functionsAlon Zakai
2011-06-25remove second unneeded unlink in libraryAlon Zakai
2011-06-25Style cleanup for the previous commit.max99x
2011-06-25export heaps when using typed arraysAlon Zakai
2011-06-25indexize Math.* properly. fixes issue 29Alon Zakai
2011-06-25Fixed stdin() returning undefined in browser cotext if the usermax99x
clicks "Cancel" in the prompt dialog.
2011-06-25Added basic support for dynamic module loading.max99x
2011-06-25Made sure read() is defined locally rather than globally. This makesmax99x
no difference unless the module is wrapped in a closure.
2011-06-25Added support for exporting (non-function) global variables.max99x
2011-06-24Additional IO functions support (pull 31)tim.dawborn
2011-06-24remove unneeded assertion. fixes issue 28Alon Zakai
2011-06-24remove unneeded globalFuncsAlon Zakai
2011-06-24fix and optimize library aliases by making them refer instead of copyAlon Zakai
2011-06-23update python demoAlon Zakai
2011-06-23tweak python demo printingAlon Zakai
2011-06-23Merge pull request #27 from max99x/masterkripken
Python fixes: demo polish and module loading
2011-06-23minor fixes for mergeAlon Zakai
2011-06-24Added some libc I/O stubs to get Python module importing to work:max99x
* fdopen: no-op. * __01lseek64_: linked tp fseek. * __01open64_: calls open() with swapped args. * unlink: no-op. * __01fstat64_: linked to fstat. Added myself to AUTHORS.
2011-06-24Merge remote-tracking branch 'upstream/master'max99x
2011-06-23Merge pull request #26 from timdawborn/masterkripken
Various fixes to IO stubs
2011-06-24Merge remote-tracking branch 'upstream/master'max99x
2011-06-23libc seek testsAlon Zakai
2011-06-24* added myself to AUTHORStim.dawborn
2011-06-24* corrected support for fileno(FILE *)tim.dawborn