Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-01-03 | make sure to give Ids to split blocks in relooper1.8.1 | Alon Zakai | |
2014-01-03 | Linux fixes to emrun. Don't fail if glxinfo is not installed, and look for ↵ | Jukka Jylänki | |
Chrome in 'google-chrome' executable name as well. Don't fail if browser is not found. | |||
2014-01-03 | do not assume callee.caller always exists | Alon Zakai | |
2014-01-03 | Update Emscripten CMake toolchain default flags to include -O2 also in ↵ | Jukka Jylänki | |
compile pass, not just at link time, and add -g to CMake RelWithDebInfo builds. | |||
2014-01-02 | adjust TOTAL_MEMORY at runtime, to take into account last minute changes to ↵ | Alon Zakai | |
Module.TOTAL_MEMORY | |||
2014-01-02 | deprecate compression | Alon Zakai | |
2014-01-02 | support #include x.js in our preprocessed js sources | Alon Zakai | |
2014-01-02 | Merge pull request #1966 from coolwanglu/pr1 | Alon Zakai | |
Clean currExternalFunctions | |||
2014-01-02 | minor clean | Lu Wang | |
2014-01-01 | ensure we add precision in gl emulation to both fragment and vertex shaders | Alon Zakai | |
2014-01-01 | fix gl typos | Alon Zakai | |
2014-01-01 | Merge pull request #1870 from inolen/structinfo_fix | Alon Zakai | |
fix for structures generated by manually calling generateStructInfo | |||
2014-01-01 | Merge pull request #1961 from coolwanglu/pr | Alon Zakai | |
minor clean | |||
2014-01-01 | minor clean | Lu Wang | |
2013-12-31 | sanity check for js backend in fastcomp | Alon Zakai | |
2013-12-30 | disable some other.* tests in fastcomp | Alon Zakai | |
2013-12-30 | fix --save-bc in fastcomp | Alon Zakai | |
2013-12-30 | disable jcache in fastcomp, and fake emscripten_jcache_printf | Alon Zakai | |
2013-12-30 | fix other.test_crunch | Alon Zakai | |
2013-12-30 | Add support for generating vs-tool Visual Studio project files from CMake ↵ | Jukka Jylänki | |
for building with Emscripten. This requires a custom build of CMake to work, since by default, CMake does not allow targeting other platforms than a few hardcoded ones ("win32", "x64", "itanium"). | |||
2013-12-30 | Merge pull request #1946 from juj/default_obj_ext | juj | |
--default-obj-ext | |||
2013-12-29 | Merge pull request #1928 from anlambert/webgl_ANGLE_instanced_arrays | Alon Zakai | |
Add support for WebGL hardware instancing through extension ANGLE_instanced_arrays | |||
2013-12-29 | Define behavior that 'emcc -c a.c -o dir/' shall compile and generate object ↵ | Jukka Jylänki | |
file 'dir/a.o'. Previous behavior when directory was specified in -o was accidental, and it generated an object file 'dir/a_0.o'. Add new command line option --default-obj-ext that allows specifying the file suffix that is used when the output object filename is generated in this manner. '.o' is a good default suffix since it parallels the existing gcc/clang/linux convention. For Windows Visual Studio+CMake+Emscripten integration, CMake has been hardcoded to assume that if Visual Studio is targeted, the compiler will always generate '.obj' files. Hence having the ability to adjust the default naming scheme with --default-obj-ext enables working around CMake inflexibility, and add support for CMake+VS+Emscripten triple. | |||
2013-12-28 | Merge pull request #1954 from richq/lockref | Alon Zakai | |
Fix missing SDL_LockSurface reference | |||
2013-12-28 | optimize relooper id counters1.8.0 | Alon Zakai | |
2013-12-27 | handle if-chains without an else in the outliner | Alon Zakai | |
2013-12-27 | Fix missing SDL_LockSurface reference | Richard Quirk | |
Prior to this change, when blitting from the screen to a memory buffer the code could throw a "ReferenceError: _SDL_LockSurface is not defined" if SDL_LockSurface was not used elsewhere in the C code. | |||
2013-12-26 | support for optional complete emulation in relooper1.7.9 | Alon Zakai | |
2013-12-26 | fix js libraries in fastcomp; fixes #1948 | Alon Zakai | |
2013-12-25 | ignore whitespace in relooper reftests | Alon Zakai | |
2013-12-25 | disable new test in fastcomp | Alon Zakai | |
2013-12-25 | better error on missing input files, fixes #1930 | Alon Zakai | |
2013-12-25 | properly handle invoke of setjmp, by lowering to a call, which fixes phis ↵ | Alon Zakai | |
that refer to it. fixes #1942 | |||
2013-12-25 | Merge pull request #1943 from volo-zyko/incoming | juj | |
Fixed small problems which exhibit themself when building projects with ... | |||
2013-12-24 | disable a test requiring unaligned memory in fastcomp | Alon Zakai | |
2013-12-24 | remove outdated comment | Alon Zakai | |
2013-12-24 | fix LEAVE_INPUTS_RAW in fastcomp | Alon Zakai | |
2013-12-24 | properly check for libx.so.1.2.3 types when deciding what to link in ↵ | Alon Zakai | |
statically, and improve testing for that; fixes #1886 | |||
2013-12-24 | differentiate suffixes from endings in filename_type_ending as well | Alon Zakai | |
2013-12-24 | clearly differentiate suffixes from endings (dot + suffix) in emcc | Alon Zakai | |
2013-12-24 | Fixed small problems which exhibit themself when building projects with too ↵ | Volo Zyko | |
many source files. When there are too many source files and one builds static libraray cmake splits the whole list of files into several invocations of library archiver. In order this to work cmake needs to know both how to create and how to append to archive. Another related issue is that emscripten code fails when links a final javascript code if a command line of a link command is too long (this 'too long' is very OS dependent). Related discussion can be found in issue #1931. Conflicts: AUTHORS | |||
2013-12-23 | do not link in dynamic libraries when compiling to bitcode in intermediate ↵ | Alon Zakai | |
stages, only link them in when building to js or html. closes #1886 | |||
2013-12-23 | fix size limit in limit_size, necessary for s_0_0.test_safe_heap | Alon Zakai | |
2013-12-23 | make eliminator not get confused by calls without a return but with a coercion | Alon Zakai | |
2013-12-23 | don't get confused by temporary empty nodes when calculating assigns in the ↵ | Alon Zakai | |
loop variable optimizer | |||
2013-12-23 | fix bug where close-together tempDoublePtr operations could cross each other | Alon Zakai | |
2013-12-23 | improve fuzz test tool | Alon Zakai | |
2013-12-22 | comment on how tempDoublePtr is optimized | Alon Zakai | |
2013-12-22 | do not use named globals in fastcomp | Alon Zakai | |
2013-12-21 | save each benchmark to a unique name | Alon Zakai | |