Age | Commit message (Collapse) | Author | |
---|---|---|---|
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 | |
2012-08-30 | --clear-cache option | Alon Zakai | |
2012-08-25 | disable precise i32 multiplication even in -O0: too slow | Alon Zakai | |
2012-08-25 | PRECISE_I32_MUL option for full precision in 32-bit multiply | Alon Zakai | |
2012-08-22 | remove mentions of obsolete emld | Alon Zakai | |
2012-08-18 | warn on -I and -L to absolute paths, which may be to local system ↵ | Alon Zakai | |
headers/libraries that are not portable | |||
2012-07-29 | improve emcc help on --embed and --preload | Alon Zakai | |
2012-07-13 | Look into system/local/include and system/local/lib too | Behdad Esfahbod | |
Now one can do: emconfigure ./configure --prefix=/path/to/emscripten/local And then make install to there, like a real /usr/local. No manual bitcode moving. Now if there was a way to change default prefix of configure using an env var... | |||
2012-06-25 | use unique temp names for libraries too | Alon Zakai | |
2012-06-25 | minor emcc bugfix | Alon Zakai | |
2012-06-22 | emcc --remove-duplicates option | Alon Zakai | |
2012-06-22 | enable previous assertion, properly | Alon Zakai | |
2012-06-22 | disable overly permissive assertion in emcc | Alon Zakai | |
2012-06-18 | remove some unneeding emcc printing | Alon Zakai | |
2012-06-17 | allow multiple pre-js and post-js | Alon Zakai | |
2012-06-16 | move suffix tools to shared | Alon Zakai | |
2012-06-13 | accept .obj files as bitcode | Alon Zakai | |
2012-06-11 | refactor file packaging into standalone tool | Alon Zakai | |
2012-06-11 | use closure-exported FS API for preloading | Alon Zakai | |
2012-06-11 | allow --preload-file when generating .js, which assumes the .js will be used ↵ | Alon Zakai | |
in a web page | |||
2012-06-11 | remove GENERATING_HTML, it was confusing and gave little or no benefit | Alon Zakai | |
2012-06-10 | emcc note on preloading and .data | Alon Zakai | |
2012-05-31 | treat -s not before OPT=VALUE as a linker option | Alon Zakai | |
2012-05-24 | update year in emcc | Alon Zakai | |
2012-05-18 | support emcc -v with no further arguments | Alon Zakai | |
2012-05-12 | speed up O1 by removing unnecessary eliminator pass | Alon Zakai | |
2012-05-11 | FS.createPreloadedFile | Alon Zakai | |
2012-05-08 | handle absolute paths in file preloading | Alon Zakai | |
2012-05-04 | workaround for chromium bug 124926 to prevent hanging when loading audio in ↵ | Alon Zakai | |
chrome | |||
2012-05-02 | link files in emcc without leaving a stub | Alon Zakai | |
2012-04-26 | -v in emcc | Alon Zakai | |
2012-04-24 | add ENV_PREFIX to more places | Alon Zakai | |
2012-04-13 | --js-library option to make it easy to add additional library_*.js files | Alon Zakai | |
2012-04-13 | Make more browser tests work for Windows. | Sigmund Vik | |
2012-04-07 | handle identical basenames in emcc properly; fixes #287 | Alon Zakai | |
2012-04-07 | improve fake precompiled header workaround in emcc | Alon Zakai | |
2012-04-04 | Merge pull request #346 from behdad/outgoing | Alon Zakai | |
Misc fixes | |||
2012-04-04 | Fixed shlex.split() problem for Windows. | Sigmund Vik | |
2012-04-04 | Look for bitcode for library input files in other places | Behdad Esfahbod | |
If an input file is not bitcode and looks like a library file, treat it as library so we can look for it in other places. In conjuction with the previous change, now we can just drop, eg, libfreetype.dylib bitcode in emscripten/system/lib and "dynamic" linking would succeed. Perhaps this can be changed to only lookup in emscripten/system/lib instead of all lib_dirs, but this is a good start. | |||
2012-04-04 | Add emscripten/system/lib to lib_dirs | Behdad Esfahbod | |
So people can just drop bitcode libraries there and be found by emcc. | |||
2012-04-04 | Ignore -install_name argument the way we do for -MT | Behdad Esfahbod | |
2012-03-31 | fix -M -MM to add emcc compiler flags | Alon Zakai | |
2012-03-29 | remove unneeded -MF workaround code | Alon Zakai | |
2012-03-29 | comment | Alon Zakai | |