aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-06-26cleanup: do indexizeFunctions inside finalizeLLVMParameterAlon Zakai
2011-06-26optimize inclusion of default library itemsAlon Zakai
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
2011-06-24Merge remote branch 'upstream/master'tim.dawborn
2011-06-23LICENSE and AUTHORSAlon Zakai
2011-06-23fix bug with adding null terminator in readBinaryAlon Zakai
2011-06-23getcharAlon Zakai
2011-06-24Merge remote-tracking branch 'upstream/master'max99x
2011-06-24Undid the newline fix; better to fix it at the root, in fputs().max99x
2011-06-23Updated the Python demo replacing the output <div> with a textarea,max99x
and fixing the printing of newlines (now similar to normal CPython).
2011-06-23sdl docsAlon Zakai
2011-06-23SDL fixesAlon Zakai
2011-06-23* correction to fputs -- it should not add a trailing \n (puts does, fputs ↵tim.dawborn
does not) * corrected internal filennames of stderr and stdout * added default getgid(void) implementation to go with getuid(void)
2011-06-23* propogated return value from main back to the return value from Module.runtim.dawborn
* improved the behaviour of ungetc * added optional argument to intArrayFromString to not add the trailing NULL -- useful when adding JS strings as the data in the virtual file system