Browse Source

Enable --no-heap-copy flag for HTML5 builds

Leon Krause 7 years ago
parent
commit
44e5d446c4
1 changed files with 4 additions and 0 deletions
  1. 4 0
      platform/javascript/detect.py

+ 4 - 0
platform/javascript/detect.py

@@ -128,6 +128,10 @@ def configure(env):
     # us since we don't know requirements at compile-time.
     # us since we don't know requirements at compile-time.
     env.Append(LINKFLAGS=['-s', 'ALLOW_MEMORY_GROWTH=1'])
     env.Append(LINKFLAGS=['-s', 'ALLOW_MEMORY_GROWTH=1'])
 
 
+    # Since we use both memory growth and MEMFS preloading,
+    # this avoids unecessary copying on start-up.
+    env.Append(LINKFLAGS=['--no-heap-copy'])
+
     # This setting just makes WebGL 2 APIs available, it does NOT disable WebGL 1.
     # This setting just makes WebGL 2 APIs available, it does NOT disable WebGL 1.
     env.Append(LINKFLAGS=['-s', 'USE_WEBGL2=1'])
     env.Append(LINKFLAGS=['-s', 'USE_WEBGL2=1'])