-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #624 from permaweb/MichaelBuhler/wasm64
feat: build memory64 wasm modules
- Loading branch information
Showing
11 changed files
with
6,146 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM emscripten/emsdk:3.1.14 | ||
FROM emscripten/emsdk:3.1.55 | ||
LABEL maintainer "tom wilson <[email protected]>" | ||
|
||
# The working directory used by the base image is /src, so we can mount volumes to there | ||
|
@@ -50,7 +50,7 @@ RUN npm --version | |
# And, re-compile lua with "generic WASM" | ||
RUN cd /lua-${LUA_VERSION} && \ | ||
make clean && \ | ||
make generic CC='emcc -s WASM=1 -U LUA_32BITS' | ||
make generic CC='emcc -s WASM=1 -s MEMORY64=1 -s SUPPORT_LONGJMP=1' | ||
|
||
############################# | ||
##### Install Commands ###### | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/* eslint-disable */ | ||
export const VERSION = { | ||
"CLI": "0.0.53", | ||
"IMAGE": "0.0.33" | ||
"CLI": "0.0.54", | ||
"IMAGE": "0.0.34" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.