diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2019-02-24 19:44:54 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-24 19:44:54 +0100 |
commit | 69c0d32b93fc8ec3a3f6c08de2b3c518e38d8a56 (patch) | |
tree | 06140c4fa64a6b39fbaf381c5c79543494958232 /platform/javascript/detect.py | |
parent | 61b41d6001492527753b7047989d38ffd085a9de (diff) | |
parent | 76522624cb48675df2e632dbf2ef35f39d0a611c (diff) | |
download | redot-engine-69c0d32b93fc8ec3a3f6c08de2b3c518e38d8a56.tar.gz |
Merge pull request #26240 from eska014/html5-preload-noown
Properly preload files, always use stdout/-err in HTML5 platform
Diffstat (limited to 'platform/javascript/detect.py')
-rw-r--r-- | platform/javascript/detect.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/platform/javascript/detect.py b/platform/javascript/detect.py index c3f3946ee0..3cc79097f8 100644 --- a/platform/javascript/detect.py +++ b/platform/javascript/detect.py @@ -129,10 +129,6 @@ def configure(env): # us since we don't know requirements at compile-time. env.Append(LINKFLAGS=['-s', 'ALLOW_MEMORY_GROWTH=1']) - # Since we use both memory growth and MEMFS preloading, - # this avoids unnecessary copying on start-up. - env.Append(LINKFLAGS=['--no-heap-copy']) - # This setting just makes WebGL 2 APIs available, it does NOT disable WebGL 1. env.Append(LINKFLAGS=['-s', 'USE_WEBGL2=1']) |