Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
requires much more time and complexity to handle
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
effects, preventing optimization
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1895; enable crankshaft in js optimizer for additional speed
|
|
|
|
|
|
|
|
eliminator, to allow optimizing very large files without node hitting out-of-memory
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Add emcc option "--split <size>" to split javascript file.
|
|
|
|
|
|
|
|
|
|
Extract check_clang_version into an own function and correct checking so...
|
|
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".
|
|
|
|
|