Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-11-17 | try 'webgl' as well for webgl context creation; fixes #1813 | Alon Zakai | |
2013-11-17 | Merge pull request #1824 from juj/fix_browser_harness_windows | juj | |
Fix browser harness windows | |||
2013-11-18 | Clean up Windows-specific code in previous commits in the pull request. | Jukka Jylänki | |
2013-11-17 | Add a default setting line for running crunch tool, primarily from CRUNCH ↵ | Jukka Jylänki | |
env var, and secondarily from PATH. | |||
2013-11-17 | Fix test browser.test_chunked_synchronous_xhr on Windows. It failed due to a ↵ | Jukka Jylänki | |
name visibility issue in pickling, see http://stackoverflow.com/questions/8126654/using-multiprocessing-inside-decorator-generates-error-cant-pickle-function?rq=1 , which is fixed by hoisting the process start function to global scope. | |||
2013-11-17 | Fix browser.test_freealut on Windows by implementing a CMake build path for ↵ | Jukka Jylänki | |
that library. | |||
2013-11-17 | Fix test browser.test_sdl_image_compressed on Windows when the system does ↵ | Jukka Jylänki | |
not have Cygwin make, but does have MinGW32 make. | |||
2013-11-17 | Adjust split.py tool logic for generating output filenames to not generate ↵ | Jukka Jylänki | |
the full absolute path names to the splitted filenames. This fixes a Windows problem where invalid path concatenations like 'somethingC:/projects/emscripten/hello_world.js' would be generated, and shortens the path structure to not contain redundant directory names. Fixes test browser.test_split_in_source_filenames on Windows. | |||
2013-11-17 | fix some leaked globals; fixes #1823 | Alon Zakai | |
2013-11-17 | EM_ASM_INT and EM_ASM_DOUBLE, which allow input and output values from ↵ | Alon Zakai | |
EM_ASM; fixes #1819 | |||
2013-11-16 | asm warning | Alon Zakai | |
2013-11-16 | Merge pull request #1818 from DopefishJustin/master | Alon Zakai | |
Don't throw an exception on SDL_ThreadID() | |||
2013-11-16 | fix clock_getres for higher-resolution timing we now support; improves #1795 | Alon Zakai | |
2013-11-16 | Don't throw an exception on SDL_ThreadID() | DopefishJustin | |
2013-11-16 | Relax emcc --compression cmdline parameter on Windows to autodetect encoder ↵ | Jukka Jylänki | |
and decoder file suffix so same cmdline works on Windows and Linux. Fixes browser.test_compression on Windows. | |||
2013-11-16 | Fix HTTP server in browser harness to serve files with appropriate header ↵ | Jukka Jylänki | |
and body content by using the python built-in SimpleHTTPServer for file serves instead of manually crafting header+body. Fixes browser test harness runs on Windows and Linux. | |||
2013-11-15 | precise clock_gettime when not using CLOCK_REALTIME; fixes #17951.7.7 | Alon Zakai | |
2013-11-15 | remove obsolete demos folder | Alon Zakai | |
2013-11-15 | ignore llvm ir fast-math notation; fixes #1762 | Alon Zakai | |
2013-11-15 | Merge pull request #1806 from juj/sdl_audio_queueing | juj | |
Sdl audio queueing | |||
2013-11-16 | Add a configuration option Module.SDL_numSimultaneouslyQueuedBuffers to ↵ | Jukka Jylänki | |
allow user code to configure how many SDL audio buffers to keep simultaneously queued up for the audio backend. More buffers means less change of starving (and cracking audio), but increases latency. Fewer buffers lower the latency at the risk of playback glitches. Make minimum audio buffer size 128, which should be way below anything reasonable already. Clean up commented out code. | |||
2013-11-15 | Merge pull request #1816 from juj/fix_test_other_warn_undefined | Alon Zakai | |
Fix test other.test_warn_undefined on Windows. | |||
2013-11-15 | Never throw uncaught exceptions out from compiler.js, but just report the ↵ | Jukka Jylänki | |
exception message to stderr. Fixes other.test_warn_undefined on Windows, which would fail if Python spawned node.js in the case where it printed stderr and terminated to an uncaught exception, leaving unflushed data to stderr, and not all unresolved symbol errors were printed to console. Node.js stderr does not have a flush() mechanism, so must gracefully terminate the execution instead. | |||
2013-11-15 | mention inline asm() syntax in EM_ASM comment | Alon Zakai | |
2013-11-15 | do not kill asm library functions with DEAD_FUNCTIONS, as they perform ↵ | Alon Zakai | |
fundamental things we cannot easily remove, and there are not many of them anyhow; fixes asm1.test_asm_pgo | |||
2013-11-15 | fix asm2g.test_the_bullet | Alon Zakai | |
2013-11-15 | option to hoist dead ends into loops | Alon Zakai | |
2013-11-15 | Merge pull request #1814 from juj/fix_test_static_link | Alon Zakai | |
Fix test static link | |||
2013-11-15 | Fix other.test_static_link on Windows by using CMake instead of configure to ↵ | Jukka Jylänki | |
build zlib and bullet. | |||
2013-11-15 | Move bullet library build code to runner.py so that it can be shared between ↵ | Jukka Jylänki | |
test_the_bullet in test_core.py and test_static_link test_other.py. | |||
2013-11-15 | Make emlink.py import-safe. Fixes an issue where python multiprocessing.py ↵ | Jukka Jylänki | |
enters an infinite loop throwing errors 'Attempt to start a new process before the current process has finished its bootstrapping phase.' when running other.test_static_link. See http://stackoverflow.com/questions/18204782/runtimeerror-on-windows-trying-python-multiprocessing . | |||
2013-11-15 | Fix other.test_preprocess on Linux after regressing it in the previous ↵ | Jukka Jylänki | |
commit b3906e91dec32ee13258cee820781c8bf9bb9c1c that fixed it for Windows. | |||
2013-11-14 | emit ll from llvm opt directly, to skip writing and reading all the bitcode | Alon Zakai | |
2013-11-14 | don't evaluate function table aliases containing relocation offsets; fixes #1807 | Alon Zakai | |
2013-11-14 | Merge branch 'regex-impl' of github.com:waywardmonkeys/emscripten into incoming1.7.6 | Alon Zakai | |
Conflicts: tools/shared.py | |||
2013-11-14 | Merge pull request #1809 from juj/gles2_gets | Alon Zakai | |
GLES2 glGetXXs() | |||
2013-11-14 | simplify other.test_emcc check for micro-opts, to not be so finicky | Alon Zakai | |
2013-11-14 | fix bug with linking bullet without any metadata whatsoever; fixes ↵ | Alon Zakai | |
other.test_static_link on llvm 3.3 | |||
2013-11-14 | disable asm2x86.test_sqlite due to legalization error on llvm 3.3 | Alon Zakai | |
2013-11-14 | ensure a >>> coercion on unsigned comparisons, even if the input is an i29 ↵ | Alon Zakai | |
which would be coerced using an &; fixes asm1.test_sqlite on llvm 3.3 | |||
2013-11-14 | handle odd types like i24 in makeSignOp, fixes asm1.test_fuzz on llvm 3.3 | Alon Zakai | |
2013-11-14 | update test_pgo | Alon Zakai | |
2013-11-14 | Merge pull request #1802 from Daft-Freak/patch-2 | juj | |
CMake: only append to LINK_FLAGS if they exist | |||
2013-11-14 | Implement more complete glGetXXv() for GLES2 binary shader format and shader ↵ | Jukka Jylänki | |
compiler enums that WebGL will not implement for us. Fixes #1803. | |||
2013-11-14 | CMake: only append to LINK_FLAGS if they exist | Daft-Freak | |
Prevents an error similar to: ERROR root: props-NOTFOUND: No such file or directory | |||
2013-11-14 | Adjust other.test_preprocess to not include a path delimiter in the string ↵ | Jukka Jylänki | |
that it tests for successfully preprocessed file. In linux, the output line would contain "tests/hello_world.c", but on Windows, the equivalent line is "tests\\hello_world.c". Fixes other.test_preprocess on Windows. | |||
2013-11-13 | don't show both errors and warnings on undefined symbols | Alon Zakai | |
2013-11-13 | test for multiple undefined symbols | Alon Zakai | |
2013-11-13 | tidy up case of first letter in error/warning | Alon Zakai | |
2013-11-13 | warn on missing symbols by default; fixes #1794 | Alon Zakai | |