diff options
author | Alon Zakai <alonzakai@gmail.com> | 2014-02-09 14:50:42 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2014-02-09 14:50:42 -0800 |
commit | ab1ea19af2e0528a0d69165fbddde771da65b899 (patch) | |
tree | 65e682d94e838ed0a5f819fc6a64418f9ddf470d /emcc | |
parent | 72c0b9e5c7682413398e31688999d3dc0e5384d8 (diff) |
deprecate --split option and disable browser tests using it in fastcomp
Diffstat (limited to 'emcc')
-rwxr-xr-x | emcc | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -391,6 +391,9 @@ Options that are modified or new in %s include: The main file resides in the base directory and has the suffix ".js". + Note: this option is deprecated (modern JS debuggers + should work ok even on large files) + --bind Compiles the source code using the "embind" bindings approach, which connects C/C++ and JS. @@ -1206,6 +1209,7 @@ try: assert shared.Settings.PGO == 0, 'pgo not supported in fastcomp' assert shared.Settings.TARGET_LE32 == 1, 'fastcomp requires le32' assert shared.Settings.USE_TYPED_ARRAYS == 2, 'fastcomp assumes ta2' + assert not split_js_file, '--split-js is deprecated and not supported in fastcomp' assert not bind, 'embind not supported in fastcomp yet' if jcache: logging.warning('jcache is not supported in fastcomp (you should not need it anyhow), disabling') |