aboutsummaryrefslogtreecommitdiff
path: root/tools
AgeCommit message (Collapse)Author
2014-07-22EMCC_ONLY_FORCED_STDLIBS optionAlon Zakai
2014-07-21DEMANGLE_SUPPORT option to use libcxxabi's demangler in stackTrace()Alon Zakai
2014-07-21move isxdigit from libcextra to libcAlon Zakai
2014-07-21move new.cpp from libc into libcxxabiAlon Zakai
2014-07-21do not warn on malloc not present, we do so at runtime if used (+commented ↵Alon Zakai
code to pull in malloc and other system libs based on EXPORTS)
2014-07-21build enough of libcxxabi to support bad_typeid without undefined symbols; ↵Alon Zakai
1.21.5; fixes #2547
2014-07-17strsignal; 1.21.4; fixes #2532Alon Zakai
2014-07-16Improve previous fix to take into account different error numbers.Jukka Jylänki
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-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-12Fix tools/validate_asmjs.py to not throw if SPIDERMONKEY_ENGINE is not ↵Jukka Jylänki
properly set.
2014-07-11better warning on huge functionsAlon Zakai
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-11Merge pull request #2513 from juj/improve_cmake_for_sdl2juj
Improve cmake for sdl2
2014-07-10build libcxxabi exception.cpp; 1.21.3Alon Zakai
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-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.
2014-07-09generate libc/libc++ using multiple coresAlon Zakai
2014-07-08Merge pull request #2496 from waywardmonkeys/fix-relooper-settingAlon Zakai
Let -s RELOOPER work correctly.
2014-07-08Fix up the change in previous commit to abort libc build if nonzero return ↵Jukka Jylänki
code is received during build.
2014-07-08Fix Python process spawn deadlock issues when building system libc.Jukka Jylänki
2014-07-08Let -s RELOOPER work correctly.Bruce Mitchener
2014-07-06fix bug in resurrected optimizeShifts not popping the stack; fixes ↵Alon Zakai
slow2.test_python
2014-07-05add support for ffs libc function.Sebastien Ronsse
2014-07-05ressurect optimizeShifts (just in js optimizer and tests), with a fix for ↵Alon Zakai
ensuring at most one value with unknown lower bits; #2481
2014-07-02update musl from 0.9.13 to 1.0.3Alon Zakai
2014-07-02check return codes when building system libsAlon Zakai
2014-07-01clean up how PYTHON is specified. it is not specified in .emscripten by defaultChad Austin
2014-06-26by default, require that subcommands actually succeed. there were scenarios ↵Chad Austin
where compiler.js or js-optimizer.js would fail, but emcc would happily try to continue, and sometimes succeed, causing corrupted builds.
2014-06-13Fix ffdb.py issue on Windows where user cannot abort logging with Ctrl-C. ↵Jukka Jylänki
Add log colors to Windows prints as well. Make default logging output format contain less cruft.
2014-06-11Hide false warnings in 'ffdb.py install --run --log' if app was not ↵Jukka Jylänki
installed or running before.
2014-06-11Improve Ctrl-C exception detection to cover the whole ffdb.py app.Jukka Jylänki
2014-06-10Add support for printing out a memory summary of a running application with ↵Jukka Jylänki
ffdb via 'ffdb.py memory <app>'.
2014-06-10Add support for printing FFOS device system description fields (deviceActor ↵Jukka Jylänki
getDescription verb) with 'ffdb.py desc'
2014-06-10Fix ffdb issue when taking a screenshot and the screenshot is small enough ↵Jukka Jylänki
to fit into a single message instead of having multiple fragments.
2014-06-10Fix message queueing issue in ffdb.py which could discard log messages if ↵Jukka Jylänki
the app was spamming a lot of them.
2014-06-09minor cleanLu Wang
2014-06-09Add support for passing --run command to ffdb install&launch when a packaged ↵Jukka Jylänki
app .zip file is passed.
2014-06-09Add options --run and --log to ffdb launch and install commands for conveniency.Jukka Jylänki
2014-06-09Merge pull request #2399 from waywardmonkeys/cleanup-includesAlon Zakai
Cleanup includes
2014-06-09Improve error message that is shown in ffdb when DevTools is not enabled on ↵Jukka Jylänki
a FFOS device.
2014-06-09Add a nicer quit message when pressing Ctrl-C to abort an operation in ffdb.Jukka Jylänki
2014-06-09Improved error messages printed from tools/ffdb.py. Added new commands ↵Jukka Jylänki
'get', 'set', 'unset', 'hide-prompt' and 'restore-prompt' to ffdb.
2014-06-07On Windows, properly clean up temporary .rsp response file used during the ↵Jukka Jylänki
build after finished so the C:\Users\clb\AppData\Local\Temp directory doesn't litter up with .rsp files.
2014-06-07Remove non-existing include paths.Bruce Mitchener
2014-06-06recurse on deps_info.json, and remove workaround we needed without thatAlon Zakai
2014-06-06Add options --host, --port, --verbose and --simulator to tools/ffdb.pyJukka Jylänki
2014-06-06Remember to free up resources used by Devtools connection for ffdb ↵Jukka Jylänki
screenshot capture. Report out captured image dimensions for better error detection.