Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-07-18 | fix relative paths in preloading and add testing | Alon Zakai | |
2012-07-18 | use createPreloadedFile in file packager | Alon Zakai | |
2012-07-18 | refactor file preloading to happen in FS.createPreloadedFile, so that not ↵ | Alon Zakai | |
only file_packager preloading gets preloaded Images and Audios | |||
2012-07-18 | fix powf -> pow | Alon Zakai | |
2012-07-17 | use unget properly in scanString, so it works in fscanf and not just sscanf | Alon Zakai | |
2012-07-16 | optimize bswap | Alon Zakai | |
2012-07-15 | remove whitespace at beginning of sscanf, fixes #512 | Alon Zakai | |
2012-07-15 | utf parsing in writeStringToMemory as well | Alon Zakai | |
2012-07-14 | refactor utf8processing | Alon Zakai | |
2012-07-14 | utf-8 support | Alon Zakai | |
2012-07-12 | Merge pull request #380 from linghuye/master | Alon Zakai | |
2012-07-09 | llvm umul|add intrinsics | Alon Zakai | |
2012-07-09 | Add llvm_uadd_with_overflow_i8 function | Aleksander Guryanov | |
2012-06-26 | fix lseek bug with devices | Alon Zakai | |
2012-06-12 | emscripten_random | Alon Zakai | |
2012-06-11 | export some filesystem commands through closure | Alon Zakai | |
2012-06-08 | remove Array_copy and String_copy; they are hard to implement in a fast way ↵ | Alon Zakai | |
that is ta0, 1 and 2-compatible | |||
2012-06-08 | optimize Array_copy | Alon Zakai | |
2012-05-31 | make strtod properly handle .5 etc | Alon Zakai | |
2012-05-31 | Adding LLVM intrinsic llvm_uadd_with_overflow_i16. | Adrian Taylor | |
With -O1, sometimes LLVM generates code which calls its intrinsic llvm_uadd_with_overflow_i16, which was previously missing in emscripten's library. This commit adds that intrinsic, and also adds a test which causes LLVM to call that intrinsic (only in 'o1'). This test previously failed in 'o1' but now passes. | |||
2012-05-29 | Fix behavior strndup whern size <= 0, in this case strndup returns empty string | Aleksander Guryanov | |
2012-05-28 | Fix size of new string (0 +1->size +1) | Aleksander Guryanov | |
2012-05-28 | Add implementation of strndup function and test for it | Aleksander Guryanov | |
2012-05-26 | fix strtod behavior on non-ints | Alon Zakai | |
2012-05-24 | make fgetc return the char value as unsigned (in a signed int) | Alon Zakai | |
2012-05-16 | fix invalid character | Alon Zakai | |
2012-05-15 | Make FS_LOG work again | Ehsan Akhgari | |
Use Module.print, since the print function doesn't seem to be accessible any more for some reason. Without this, enabling FS_LOG causes the browser's print UI to be invoked, which is pretty bad! | |||
2012-05-15 | initial work on c++ gc support | Alon Zakai | |
2012-05-14 | handle cancel in window.prompt | Alon Zakai | |
2012-05-14 | do not fail on -fcatch-undefined-behavior | Alon Zakai | |
2012-05-11 | FS.createPreloadedFile | Alon Zakai | |
2012-05-09 | sscanf support for negative integers | Alon Zakai | |
2012-05-09 | various fixes and improvements to sscanf | Alon Zakai | |
2012-05-08 | handle absolute paths in file preloading | Alon Zakai | |
2012-04-23 | Fix to strtod_l and add test case for strtold. | Sigmund Vik | |
(The test case is reusing test_strtod, when we implement real support for long double we should add a separate test case for this.) | |||
2012-04-23 | Added strtold and strtod_l/strtold_l stubs. | Sigmund Vik | |
2012-04-21 | partial support for llvm_umul_with_overflow_i64 | Alon Zakai | |
2012-04-21 | support extraction of i64 values in ta2, and partial support for ↵ | Alon Zakai | |
llvm_uadd_with_overflow_i64 | |||
2012-04-20 | optimize strspn and strcspn | Alon Zakai | |
2012-04-19 | [src/library.js]: Added llvm_bswap_i16 ; | Pierre Renaux | |
2012-04-19 | [src/library.js]: Added llvm_invariant_start/end so that code linking to ↵ | Pierre Renaux | |
pre-optimized LLVM bit code works correctly ; | |||
2012-04-17 | fix closure issues with exception handling, and add test coverage | Alon Zakai | |
2012-04-16 | fix sscanf handling of ends of %s | Alon Zakai | |
2012-04-13 | Add strlwr & strupr implementations | YeZhongWen | |
2012-04-12 | More consistent stubs for functions accepting a locale. | Sigmund Vik | |
Now isdigit_l, isxdigit_l, strftime_l, and strptime_l follow the same convention used by strtol_l et al. | |||
2012-04-11 | Fixed parameters for strptime_l. | Sigmund Vik | |
2012-04-11 | Added stub for strptime_l to library.js | Sigmund Vik | |
2012-04-11 | Added stub for strftime_l to library.js | Sigmund Vik | |
This function is required by e.g. Boost Local Time. | |||
2012-04-09 | init runtime immediately, so that even with noInitialRun we can still call ↵ | Alon Zakai | |
filesystem-using functions and they will work | |||
2012-04-09 | use Array prototype slice in mmap, since contents may not be an Array | Alon Zakai | |