summaryrefslogtreecommitdiff
path: root/emcc
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2012-11-30 12:12:21 -0800
committerAlon Zakai <alonzakai@gmail.com>2012-11-30 12:12:21 -0800
commitc6b53ac34c499d25587c2119b834d716e64613ab (patch)
treebc987e7d03d7e16b55f1b43bf9640d1e0b92cbf4 /emcc
parent26250471b46a68204711f037f33790bfb4ba37c7 (diff)
parent64b3836a68c51bfe5823bbd0a82050b4a43536ca (diff)
Merge branch 'incoming'
Diffstat (limited to 'emcc')
-rwxr-xr-xemcc9
1 files changed, 7 insertions, 2 deletions
diff --git a/emcc b/emcc
index 7e7efe6d..dc8bd630 100755
--- a/emcc
+++ b/emcc
@@ -335,7 +335,11 @@ Options that are modified or new in %s include:
builds - where you are compiling a large
program but only modified a small part of it -
to be much faster (at the cost of more disk
- IO for cache accesses).
+ IO for cache accesses). Note that you need
+ to enable --jcache for both loading and saving
+ of data, so you must enable it on a full build
+ for a later incremental build (where you also
+ enable it) to be sped up.
--clear-cache Manually clears the cache of compiled
emscripten system libraries (libc++,
@@ -772,7 +776,8 @@ try:
else:
print >> sys.stderr, 'emcc: %s: warning: Not valid LLVM bitcode' % arg
else:
- print >> sys.stderr, 'emcc: %s: warning: No such file or directory' % arg
+ print >> sys.stderr, 'emcc: %s: error: No such file or directory' % arg
+ exit(1)
elif arg.startswith('-L'):
lib_dirs.append(arg[2:])
newargs[i] = ''