aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-07-16Add instructions to ffdb.py when user is missing the app name to ffdb.py log ↵Jukka Jylänki
command
2014-07-16Fix ffdb.py to automatically attempt adb port forward when error 107 ↵Jukka Jylänki
'Transport endpoint is not connected' is received.
2014-07-16Convert ints that were signalling booleans to EM_BOOL everywhere in html5.h ↵Jukka Jylänki
where those were missing.
2014-07-16Clean up code from prabindh's pull request.Jukka Jylänki
2014-07-16Fix for incorrect parsing of context attributes as in emscripten issue #2518Prabindh Sundareson
2014-07-16Added tests for invalid parameters and terminators, to test functionality of ↵Prabindh Sundareson
egl context creation. This also adds a RED clear color for the default viewport so that the GL output can be visually observed
2014-07-15fix error on symlinking to an invalid filenameAlon Zakai
2014-07-15error on invalid pathname to symlink targetAlon Zakai
2014-07-15make lookupPath return failure on '', and check for existence in statAlon Zakai
2014-07-15make PATH.resolve return an error result on paths with '' portionsAlon Zakai
2014-07-15Fix emrun process exit code handler to use __ATEXIT__ instead of depending ↵Jukka Jylänki
on Module.exit.
2014-07-15Fix missing param in docs for --js-opts.Jukka Jylänki
2014-07-15Merge pull request #2390 from fadams/add-network-callbacksjuj
Feature to enable asynchronous event driven network event handling
2014-07-15Use shared.listify() in tools/validate_asmjs.py, and enhance error message ↵Jukka Jylänki
is SpiderMonkey is not found, and improve the output print.
2014-07-14c-define __EMSCRIPTEN_major__, __EMSCRIPTEN_minor__, __EMSCRIPTEN_tiny__ as ↵Alon Zakai
the 3 parts of the emscripten version; fixes #2343
2014-07-14Fix broken link to page visibility apiJukka Jylänki
2014-07-14fix other.test_sconsAlon Zakai
2014-07-14copy the event in SDL_PushEvent, and free it later after copy is no longer ↵Alon Zakai
needed
2014-07-14refactor emscripten.h to avoid ugly function pointer type definitions in ↵Alon Zakai
function definitions
2014-07-12Clean up extra littering includes in Bullet build file to avoid noise. ↵Jukka Jylänki
Upstreaming progress at https://github.com/bulletphysics/bullet3/pull/197
2014-07-12Fix test other.test_cmake to build after updates to CMake system.Jukka Jylänki
2014-07-12Fix other.test_cmake to not fail on Ninja generator if EM_BUILD_VERBOSE=3Jukka Jylänki
2014-07-12Fix tools/validate_asmjs.py to not throw if SPIDERMONKEY_ENGINE is not ↵Jukka Jylänki
properly set.
2014-07-12Fix EMSCRIPTEN root path search in CMake toolchain file.Jukka Jylänki
2014-07-11clean up emscripten.hAlon Zakai
2014-07-11better warning on huge functionsAlon Zakai
2014-07-11use forEach in extensions iteration in gl code; fixes #2514Alon Zakai
2014-07-11Merge pull request #2486 from sronsse/pkg-configAlon Zakai
add pkg-config files for some supported libraries
2014-07-11limit error output from fastcomp invocation of compiler.js, to make errors ↵Alon Zakai
clearer, and fix other.test_warn_undefined
2014-07-11Fix mouse events handler to not throw in case the provided Module doesn't ↵Jukka Jylänki
have a canvas object. See https://groups.google.com/forum/#!topic/emscripten-discuss/lfPuB5HdE08 .
2014-07-11Merge pull request #2497 from juj/compiler_nonzero_exitjuj
Exit from src/compiler.js with a nonzero return code on exception.
2014-07-11Revice src/compiler.js to try process.exit() only if running in node. Make ↵Jukka Jylänki
the compiler error more user friendly along the lines of #2497.
2014-07-11Merge pull request #2513 from juj/improve_cmake_for_sdl2juj
Improve cmake for sdl2
2014-07-10Merge pull request #2465 from waywardmonkeys/scons-fixesAlon Zakai
Scons fixes
2014-07-10Merge pull request #2509 from waywardmonkeys/embind-improvementAlon Zakai
simplify some code and remove a frequent, unnecessary null pointer check...
2014-07-10allow cwrap calls to not specify argTypes if no args; fixes #2511Alon Zakai
2014-07-10Merge pull request #2512 from waywardmonkeys/fix-windows-settings-issueAlon Zakai
avoid the need for replacing backslashes with slashes on windows for some settings
2014-07-10disallow creating files with empty names, and add testingAlon Zakai
2014-07-10normalize path in mkdirAlon Zakai
2014-07-10disallow creating files with the name . or ..Alon Zakai
2014-07-10avoid v8 in other.test_outline due to flakinessAlon Zakai
2014-07-10build libcxxabi exception.cpp; 1.21.3Alon Zakai
2014-07-10Restore the soname symlink generation feature when using CMAKE_SYSTEM_NAME ↵Jukka Jylänki
"Emscripten", like the previous CMAKE_SYSTEM_NAME "Linux" did. This lets test_openjpeg generate output files with same file names as before the system name change.
2014-07-10Now that CMake CHECK_INCLUDE_FILE() macro works, don't unconditionally ↵Jukka Jylänki
include getopt() to openjpeg CMake build, but let it get detected via CMake.
2014-07-10After previous toolchain directory/include structure change, UNIX=1 was not ↵Jukka Jylänki
getting set by default, so set that to Emscripten CMake toolchain manually now.
2014-07-10Add explicit support for CMake CMakeBackwardsCompatibilityC.cmake detection ↵Jukka Jylänki
logic for Emscripten, without running through test builds which have issues with endianness detection.
2014-07-10Add CMake directive CMAKE_SIZEOF_INT=4 which openjpeg CMake detection was ↵Jukka Jylänki
missing.
2014-07-10Fix a long-standing CMake toolchain issue where the toolchain was not able ↵Jukka Jylänki
to specify a default suffix (.js) for generated executables and the suffix that was set got silently erased. Previously the default suffix was empty "", which meant all user CMakeLists.txt files had to explicitly specify the suffix. Fixing this adds support for CMake built-in check_function_exists() detection macro which is used e.g. by SDL2 CMakeLists.txt path. To build html files, add the directive 'SET(CMAKE_EXECUTABLE_SUFFIX ".html")' like before.
2014-07-10avoid the need for replacing backslashes with slashes on windows for some ↵Chad Austin
settings
2014-07-10When using emconfigure/emcmake to invoke cmake toolchain, don't pass in ↵Jukka Jylänki
EMMAKEN_JUST_CONFIGURE=1, since that breaks CMake configuration because CMake expects to be able to build identically at config and build time. This fixes CMake check_include_file() with Emscripten. Add tests to make sure that it doesn't regress.