Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
pyodide
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boxiang Sun
pyodide
Commits
58048cff
Commit
58048cff
authored
Oct 01, 2018
by
Michael Droettboom
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Upgrade to emscripten 1.38.12
parent
27d135e6
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
11 additions
and
11 deletions
+11
-11
Makefile
Makefile
+2
-2
Makefile.envs
Makefile.envs
+2
-2
emsdk/Makefile
emsdk/Makefile
+3
-3
emsdk/patches/lz4_c.patch
emsdk/patches/lz4_c.patch
+1
-1
emsdk/patches/num_params.patch
emsdk/patches/num_params.patch
+2
-2
tools/file_packager.py
tools/file_packager.py
+1
-1
No files found.
Makefile
View file @
58048cff
...
...
@@ -190,7 +190,7 @@ ccache/emcc:
if
hash
ccache &>/dev/null
;
then
\
ln
-s
`
which ccache
`
$(PYODIDE_ROOT)
/ccache/emcc
;
\
else
\
ln
-s
emsdk/emsdk/emscripten/tag-1.38.1
0
/emcc
$(PYODIDE_ROOT)
/ccache/emcc
;
\
ln
-s
emsdk/emsdk/emscripten/tag-1.38.1
2
/emcc
$(PYODIDE_ROOT)
/ccache/emcc
;
\
fi
...
...
@@ -199,7 +199,7 @@ ccache/em++:
if
hash
ccache &>/dev/null
;
then
\
ln
-s
`
which ccache
`
$(PYODIDE_ROOT)
/ccache/em++
;
\
else
\
ln
-s
emsdk/emsdk/emscripten/tag-1.38.1
0
/em++
$(PYODIDE_ROOT)
/ccache/em++
;
\
ln
-s
emsdk/emsdk/emscripten/tag-1.38.1
2
/em++
$(PYODIDE_ROOT)
/ccache/em++
;
\
fi
...
...
Makefile.envs
View file @
58048cff
...
...
@@ -3,8 +3,8 @@ export PATH := $(PYODIDE_ROOT)/ccache:$(PYODIDE_ROOT)/emsdk/emsdk:$(PYODIDE_ROOT
export
EMSDK
=
$(PYODIDE_ROOT)
/emsdk/emsdk
export
EM_CONFIG
=
$(PYODIDE_ROOT)
/emsdk/emsdk/.emscripten
export
EM_CACHE
=
$(PYODIDE_ROOT)
/emsdk/emsdk/.emscripten_cache
export
EMSCRIPTEN
=
$(PYODIDE_ROOT)
/emsdk/emsdk/emscripten/tag-1.38.1
0
export
BINARYEN_ROOT
=
$(PYODIDE_ROOT)
/emsdk/emsdk/binaryen/tag-1.38.1
0
_64bit_binaryen
export
EMSCRIPTEN
=
$(PYODIDE_ROOT)
/emsdk/emsdk/emscripten/tag-1.38.1
2
export
BINARYEN_ROOT
=
$(PYODIDE_ROOT)
/emsdk/emsdk/binaryen/tag-1.38.1
2
_64bit_binaryen
export
PYVERSION
=
3.7.0
export
PYMINOR
=
$(
basename
$(PYVERSION)
)
...
...
emsdk/Makefile
View file @
58048cff
...
...
@@ -9,13 +9,13 @@ emsdk/.complete:
sed
-i
-e
"s#CPU_CORES = max(multiprocessing.cpu_count()-1, 1)#CPU_CORES = 3#g"
emsdk/emsdk
(
\
cd
emsdk
;
\
./emsdk
install
--build
=
Release sdk-tag-1.38.1
0-64bit binaryen-tag-1.38.10
-64bit
;
\
./emsdk
install
--build
=
Release sdk-tag-1.38.1
2-64bit binaryen-tag-1.38.12
-64bit
;
\
cd
..
;
\
(
cat
patches/
*
.patch | patch
-p1
)
;
\
cd
emsdk/binaryen/tag-1.38.1
0
_64bit_binaryen/
;
\
cd
emsdk/binaryen/tag-1.38.1
2
_64bit_binaryen/
;
\
make
;
\
cd
../..
;
\
./emsdk activate
--embedded
--build
=
Release sdk-tag-1.38.1
0-64bit binaryen-tag-1.38.10
-64bit
;
\
./emsdk activate
--embedded
--build
=
Release sdk-tag-1.38.1
2-64bit binaryen-tag-1.38.12
-64bit
;
\
touch
.complete
\
)
...
...
emsdk/patches/lz4_c.patch
View file @
58048cff
diff --git a/emsdk/emscripten/tag-1.38.1
0/src/library_lz4.js b/emsdk/emscripten/tag-1.38.10
/src/library_lz4.js
diff --git a/emsdk/emscripten/tag-1.38.1
2/src/library_lz4.js b/emsdk/emscripten/tag-1.38.12
/src/library_lz4.js
index 4c3f583b7..5291002a4 100644
--- a/src/library_lz4.js
+++ b/src/library_lz4.js
...
...
emsdk/patches/num_params.patch
View file @
58048cff
diff --git a/emsdk/binaryen/master/src/passes/FuncCastEmulation.cpp b/emsdk/binaryen/master/src/passes/FuncCastEmulation.cpp
index 013e9403..d95fc282 100644
--- a/emsdk/binaryen/tag-1.38.1
0
/src/passes/FuncCastEmulation.cpp
+++ b/emsdk/binaryen/tag-1.38.1
0
/src/passes/FuncCastEmulation.cpp
--- a/emsdk/binaryen/tag-1.38.1
2
/src/passes/FuncCastEmulation.cpp
+++ b/emsdk/binaryen/tag-1.38.1
2
/src/passes/FuncCastEmulation.cpp
@@ -39,7 +39,7 @@
namespace wasm {
// This should be enough for everybody. (As described above, we need this
// to match when dynamically linking, and also dynamic linking is why we
...
...
tools/file_packager.py
View file @
58048cff
...
...
@@ -69,7 +69,7 @@ sys.path.insert(
os
.
path
.
abspath
(
__file__
)
)
),
'emsdk'
,
'emsdk'
,
'emscripten'
,
'tag-1.38.1
0
'
'emsdk'
,
'emsdk'
,
'emscripten'
,
'tag-1.38.1
2
'
)
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment