diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-09-21 17:36:22 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-09-21 17:36:22 -0700 |
commit | 2210898ef554a7268bb49abce6ca75090c4ba58b (patch) | |
tree | e15f6bfcd685888f9837b87e7be6ecbd00a246ef | |
parent | 48fa03221806ecb40efbe3aad57c56509afc12ae (diff) |
-s docs in emcc
-rwxr-xr-x | emcc | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -159,6 +159,18 @@ Options that are modified or new in %s include: -s OPTION=VALUE JavaScript code generation option passed into the emscripten compiler. For the available options, see src/settings.js + Note that for options that are lists, you + need quotation marks in most shells, for + example + + -s RUNTIME_LINKED_LIBS="['liblib.so']" + + or + + -s "RUNTIME_LINKED_LIBS=['liblib.so']" + + (without the external "s in either of those, + you would get an error) --typed-arrays <mode> 0: No typed arrays 1: Parallel typed arrays |