Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-12-07 | test fixes and set sign and overflow correction to 1 when in asm mode | Alon Zakai | |
2012-12-07 | improve asm test wrapping | Alon Zakai | |
2012-12-07 | move emcc minify decision to after we potentially modify closure | Alon Zakai | |
2012-12-07 | typo | Alon Zakai | |
2012-12-07 | do registerize in asm.js+reloop mode, as an alternative to closure | Alon Zakai | |
2012-12-07 | add eliminator mode for asm | Alon Zakai | |
2012-12-07 | disable closure when ASM_JS | Alon Zakai | |
2012-12-07 | add parts of system bitcode libraries when necessary, and refactor library ↵ | Alon Zakai | |
inclusion decision code | |||
2012-12-04 | Merge pull request #735 from eclecticdave/emcc_so_fix | Alon Zakai | |
Fixes to emcc to make autoconf enable shared objs | |||
2012-12-03 | do not apply -l if not generating an executable or a library | Alon Zakai | |
2012-12-03 | ignore argument after -I -L for purposes of input detection in emcc | Alon Zakai | |
2012-11-30 | Fixes to emcc to make autoconf enable shared objs | David Claughton | |
When using emcc as a linker, autoconf disables shared object support. This is because it expects the text returned by the -v and --help options to match certain things that GNU ld prints. Specifically it expects the output of emcc -v to include the word 'GNU' and the output of emcc -v to match the regexp ': supported targets.* elf' Modified the messages returned by emcc for these options to make autoconf happy. | |||
2012-11-23 | fix test_failure_error_code | Alon Zakai | |
2012-11-23 | jcache docs | Alon Zakai | |
2012-11-21 | print out total time in emcc in debug mode | Alon Zakai | |
2012-11-21 | fix missing jcache passing | Alon Zakai | |
2012-11-21 | set up parameter passing for jcache | Alon Zakai | |
2012-11-15 | return error code on no input files | Alon Zakai | |
2012-11-14 | Python system command line may come with untrimmed items at least on Windows ↵ | Jukka Jylänki | |
Vista, cmake is bad at producing these, so trim off the excessive spaces before working on the command line. Fixes other.test_cmake on Windows Vista build bot. | |||
2012-11-13 | forward -v to child processes | Alon Zakai | |
2012-11-12 | Don't pass all emcc command line inputs e.g. those of form '-DsomeDefine=1' ↵ | Jukka Jylänki | |
etc. to shared.Building.is_ar() for testing whether a file by that name is a LLVM archive file. | |||
2012-11-09 | cleanup | Alon Zakai | |
2012-11-08 | stop doing old-relooper-related js optimizer passes | Alon Zakai | |
2012-11-07 | refactor link time opts code | Alon Zakai | |
2012-11-07 | split up js optimizer passes only in EMCC_DEBUG=2, not 1 | Alon Zakai | |
2012-11-07 | strip debug info in -O1 and above by default, unless -g is specified when ↵ | Alon Zakai | |
converting to JS, since (1) js optimizations strip it anyhow, and (2) it slows down compilation | |||
2012-11-06 | fix temp dir in emcc | Alon Zakai | |
2012-10-29 | more non-clang configure fixes for configure tests | Alon Zakai | |
2012-10-29 | more non-clang configure work and debugging tools | Alon Zakai | |
2012-10-29 | configure debugging tools | Alon Zakai | |
2012-10-28 | add experimental and non-enabled non-clang configure mode | Alon Zakai | |
2012-10-27 | memory growth must be manually enabled with ALLOW_MEMORY_GROWTH, in which ↵ | Alon Zakai | |
case the eliminator runs in safe mode | |||
2012-10-26 | comment on -O3 | Alon Zakai | |
2012-10-23 | integrate eliminator as js optimizer pass | Alon Zakai | |
2012-10-20 | report times of passes in EMCC_DEBUG | Alon Zakai | |
2012-10-17 | do not include C library in shared library 2 | Alon Zakai | |
2012-10-13 | build libcxx and libcxxabi using direct commands, not a makefile, to make ↵ | Alon Zakai | |
this more easily portable to windows where make is not always present | |||
2012-10-12 | get almost all of embind test passing | Alon Zakai | |
2012-10-12 | embind integration in emcc and work towards a test | Alon Zakai | |
2012-10-12 | Merge branch 'master' into incoming | Alon Zakai | |
2012-10-11 | indentation fix | Alon Zakai | |
2012-10-03 | ignore and warn on -Os | Alon Zakai | |
2012-10-01 | CONFIGURE_CC option to let you define the compiler used when configure-ing | Alon Zakai | |
2012-09-26 | Add emcc option "--split <size>" to split javascript file. | Lars Schneider | |
Splits the resulting javascript file into pieces to ease debugging. This option only works if Javascript is generated (target -o <name>.js). Files with function declarations must be loaded before main file upon execution. Without "-g" option: Creates files with function declarations up to the given size with the suffix "_functions.partxxx.js" and a main file with the suffix ".js". With "-g" option: Recreates the directory structure of the C source files and stores function declarations in their respective C files with the suffix ".js". If such a file exceeds the given size, files with the suffix ".partxxx.js" are created. The main file resides in the base directory and has the suffix ".js". | |||
2012-09-21 | show warning about absolute paths only once | Alon Zakai | |
2012-09-21 | -s docs in emcc | Alon Zakai | |
2012-09-20 | add conftest.c flag passing test and use right indenting | Janus | |
2012-09-18 | don't pass EMCC specific flags on when configuring using clang | Janus | |
2012-09-13 | clearer error message when a crucial llvm tool is missing, and force sanity ↵ | Alon Zakai | |
checks in EMCC_DEBUG mode | |||
2012-09-12 | make all temp files be in TEMP_DIR from ~/.emscripten | Alon Zakai | |