浏览代码

Only emit the JavaScript support code for Web when building for HTML5

Excluding other unused environments like Node.js makes the support code
about 4 KB smaller.
Hugo Locurcio 5 年之前
父节点
当前提交
e818b51f32
共有 1 个文件被更改,包括 5 次插入0 次删除
  1. 5 0
      platform/javascript/detect.py

+ 5 - 0
platform/javascript/detect.py

@@ -131,6 +131,11 @@ def configure(env):
 
 
     env.Append(LINKFLAGS=['-s', 'BINARYEN=1'])
     env.Append(LINKFLAGS=['-s', 'BINARYEN=1'])
 
 
+    # Only include the JavaScript support code for the web environment
+    # (i.e. exclude Node.js and other unused environments).
+    # This makes the JavaScript support code about 4 KB smaller.
+    env.Append(LINKFLAGS=['-s', 'ENVIRONMENT=web'])
+
     # This needs to be defined for Emscripten using 'fastcomp' (default pre-1.39.0)
     # This needs to be defined for Emscripten using 'fastcomp' (default pre-1.39.0)
     # and undefined if using 'upstream'. And to make things simple, earlier
     # and undefined if using 'upstream'. And to make things simple, earlier
     # Emscripten versions didn't include 'fastcomp' in their path, so we check
     # Emscripten versions didn't include 'fastcomp' in their path, so we check