diff options
-rwxr-xr-x | emcc_to_wasm.js.sh | 1 | ||||
-rw-r--r-- | src/templates/wasm.js | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/emcc_to_wasm.js.sh b/emcc_to_wasm.js.sh index c4c3a4bf3..2f68b55c3 100755 --- a/emcc_to_wasm.js.sh +++ b/emcc_to_wasm.js.sh @@ -13,7 +13,6 @@ cat a.asm.js >> a.normal.js cat a.js >> a.normal.js echo 'constructing a.wasm.js' # use wasm polyfill in place of asm.js THIS IS NOT A DRILL -cp a.asm.js a.asm.code.js cat src/templates/wasm.js > a.wasm.js cat bin/wasm.js >> a.wasm.js cat a.js >> a.wasm.js diff --git a/src/templates/wasm.js b/src/templates/wasm.js index 94ab6d352..c2c0ae5b9 100644 --- a/src/templates/wasm.js +++ b/src/templates/wasm.js @@ -1,5 +1,5 @@ var Module = { - asmjsCodeFile: 'a.asm.code.js' // tell polyfill (which replaces a.asm.js) where the asm.js code is + asmjsCodeFile: 'a.asm.js' // tell polyfill (which replaces a.asm.js) where the asm.js code is }; |