aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2012-11-07 20:29:43 -0800
committerAlon Zakai <alonzakai@gmail.com>2012-11-07 20:29:43 -0800
commit7b633246186b42b11f6087f7c2f29262289e6883 (patch)
treeb3f269cebc2d91cbbade194b50c846703bfb7b9d /src
parentc6144aa6e2e466b0d2b14ce14809eb97c0c4929e (diff)
improve memory growth error
Diffstat (limited to 'src')
-rw-r--r--src/preamble.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/preamble.js b/src/preamble.js
index fbc0f266..cf0a4c23 100644
--- a/src/preamble.js
+++ b/src/preamble.js
@@ -579,7 +579,7 @@ var STATICTOP;
#if USE_TYPED_ARRAYS
function enlargeMemory() {
#if ALLOW_MEMORY_GROWTH == 0
- abort('Cannot enlarge memory arrays. Adjust TOTAL_MEMORY (currently ' + TOTAL_MEMORY + ') or compile with ALLOW_MEMORY_GROWTH');
+ abort('Cannot enlarge memory arrays. Either (1) compile with -s TOTAL_MEMORY=X with X higher than the current value ( ' + TOTAL_MEMORY + '), (2) compile with ALLOW_MEMORY_GROWTH which adjusts the size at runtime but prevents some optimizations, or (3) set Module.TOTAL_MEMORY before the program runs.');
#else
// TOTAL_MEMORY is the current size of the actual array, and STATICTOP is the new top.
#if ASSERTIONS