Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-06-09 | Merge pull request #2399 from waywardmonkeys/cleanup-includes | Alon Zakai | |
Cleanup includes | |||
2014-06-07 | On 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-07 | Remove non-existing include paths. | Bruce Mitchener | |
2014-05-22 | improve warning on failing to validate repos | Alon Zakai | |
2014-05-20 | wipe out emscripten.py output when it fails, so the error does not cascade ↵ | Alon Zakai | |
weirdly; fixes #2368 | |||
2014-05-20 | Merge branch 'archive_groups' of github.com:rsturgell/emscripten into incoming | Alon Zakai | |
Conflicts: AUTHORS | |||
2014-05-19 | Archive groups code review changes. | Ryan Sturgell | |
2014-05-09 | remove some warnings on moving files to directories | Alon Zakai | |
2014-05-07 | Add support for archive groups. | Ryan Sturgell | |
emcc now understands -Wl,--start-group, -Wl,--end-group to group static libraries. Static libraries in a group need not be specified in dependent to dependency order and can have circular dependencies. | |||
2014-05-07 | Extract helper functions from main link loop. | Ryan Sturgell | |
This enables future changes which will re-scan archives for objects (either grouped with -Wl,--start-group, -Wl,--end-group or some new emcc specific flag). This is mostly moving lines around and adding some comments. The only functional change is that if you specify the same archive multiple times (a workaround for the lack of grouping flags), we will now only extract it once instead of multiple times. But it will still be scanned multiple times. | |||
2014-05-02 | handle floats in jsCall properly; fixes asm2f.test_embind_2 | Alon Zakai | |
2014-04-14 | Allow setting SPIDERMONKEY_ENGINE=None in .emscripten to simplify test ↵ | Jukka Jylanki | |
runner operation. | |||
2014-04-10 | When we build native OSX executables with Clang, we must tell Clang which ↵ | Jukka Jylanki | |
OSX SDK version we are targeting. Add a function CLANG_NATIVE_ARGS() that returns a list of compiler args that need to be appended when building native executables for the current platform, which for OSX automatically find an SDK to target. Make the machinery lazy and cached so that it's not invoked if native executables are not built, and that it's invoked only once when needed. Fixed test other.test_bad_triple on OSX. | |||
2014-04-03 | Merge pull request #2232 from abergmeier/empkg_prerequisites | Alon Zakai | |
Empkg prerequisites | |||
2014-03-28 | Fix test runner banned engine filtering for SPIDERMONKEY_ENGINE when cmdline ↵ | Jukka Jylänki | |
params are automatically added to that engine. | |||
2014-03-25 | let emcc directly access bitcode files when possible, to emit proper .d ↵ | Alon Zakai | |
files and avoid unnecessary copies | |||
2014-03-17 | Split clang options passed to clang, to be more concise and less messy. ↵ | Andreas Bergmeier | |
Start splitting C and C++ options. | |||
2014-03-10 | add -w to spidermonkey to see odin warnings | Alon Zakai | |
2014-03-05 | If the directory tree for used LLVM compiler is not from a LLVM source ↵ | Jukka Jylänki | |
checkout and clang_version is not found, assume clang_version = llvm_version. | |||
2014-03-03 | enable errors on implicit functions by default; fixes #2175 | Alon Zakai | |
2014-03-03 | put emscripten version in emscripten-version.txt, like other repos | Alon Zakai | |
2014-02-26 | more warnings on source versions not matching, plus testing | Alon Zakai | |
2014-02-26 | Merge pull request #2165 from juj/fs_element_size1.12.3 | Alon Zakai | |
Fullscreen element sizes | |||
2014-02-26 | use le32 target when fastcomp is disabled, so we do not need a fastcomp ↵ | Alon Zakai | |
build, and also fixes sqlite test | |||
2014-02-26 | Add new fields to EmscriptenFullscreenChangeEvent structure that report the ↵ | Jukka Jylänki | |
new pixel sizes of the fullscreen element, as well as the whole screen size. These can be used to read and adjust the rendering canvas size appropriately when transitioning between fullscreen modes. Thanks to Joel Croteau for the suggestion at https://groups.google.com/forum/#!topic/emscripten-discuss/qaTrOXWv1Oc . Bump version to 1.12.3 to update the cache after change to struct_info.json. | |||
2014-02-25 | fix i386 target usage and asm2.test_cube2hash | Alon Zakai | |
2014-02-25 | 1.12.21.12.2 | Alon Zakai | |
2014-02-25 | Fix the banned_js_engines mechanism. | Dan Gohman | |
2014-02-25 | Begin using the Emscripten toolchain in clang. | Dan Gohman | |
With the Emscripten toolchain, we can make clang do more of what we need directly rather than in the wrapper scripts. | |||
2014-02-25 | Introduce the asmjs-unknown-emscripten target triple. | Dan Gohman | |
2014-02-24 | warn on emscripten, llvm and clang versions not matching | Alon Zakai | |
2014-02-24 | v1.12.1 - first testing version with fastcomp on by default1.12.1 | Alon Zakai | |
2014-02-24 | Merge branch 'fastcomp-by-default' into incoming | Alon Zakai | |
2014-02-21 | release 1.12.01.12.0 | Alon Zakai | |
2014-02-21 | reflect that asm is on by default in fastcomp, even in -O0, in the settings | Alon Zakai | |
2014-02-21 | bump expected llvm version to 3.3, which is what fastcomp uses | Alon Zakai | |
2014-02-21 | point to wiki page on fastcomp when using fastcomp but backend is not present | Alon Zakai | |
2014-02-21 | turn fastcomp on by default, disabling can be done with EMCC_FAST_COMPILER=0 ↵ | Alon Zakai | |
in the env | |||
2014-02-18 | version 1.11.11.11.1 | Alon Zakai | |
2014-02-13 | release 1.11.01.11.0 | Alon Zakai | |
2014-02-11 | improve logging of opts | Alon Zakai | |
2014-02-09 | add missing multibyte/internal.c in musl1.10.4 | Alon Zakai | |
2014-02-09 | move emscripten_GetProcAddress to a C library, so that it is less hackish ↵1.10.3 | Alon Zakai | |
and can work in fastcomp | |||
2014-02-06 | Add optimized versions of musl libc string and memory comparison functions. | Jukka Jylänki | |
2014-01-31 | make sure rand() returns values only up to RAND_MAX; #18551.10.1 | Alon Zakai | |
2014-01-29 | release 1.10.01.10.0 | Alon Zakai | |
2014-01-25 | Bump version to 1.9.5 to cause relooper to rebuild after previous change. | Jukka Jylänki | |
2014-01-22 | Bump version after adding new entries to src/struct_info.json. | Jukka Jylänki | |
2014-01-21 | deprecate -O3 in preparation for using it for heavier js opts | Alon Zakai | |
2014-01-17 | optimize memory initializer if it is large | Alon Zakai | |