File tree 3 files changed +6
-6
lines changed
3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
7
7
## [ v0.0.12] - TBD
8
8
9
- Uses libvips v8.16.0, compiled with Emscripten v4.0.2 .
9
+ Uses libvips v8.16.0, compiled with Emscripten v4.0.3 .
10
10
11
11
### Fixed
12
12
Original file line number Diff line number Diff line change 1
1
# https://github.com/emscripten-core/emsdk
2
- FROM docker.io/emscripten/emsdk:4.0.2
2
+ FROM docker.io/emscripten/emsdk:4.0.3
3
3
4
4
# Path settings
5
5
ENV \
24
24
25
25
# Emscripten patches
26
26
RUN \
27
- curl -Ls https://github.com/emscripten-core/emscripten/compare/4.0.2 ...kleisauke:wasm-vips-4.0.2 .patch | patch -p1 -d $EMSDK/upstream/emscripten && \
27
+ curl -Ls https://github.com/emscripten-core/emscripten/compare/4.0.3 ...kleisauke:wasm-vips-4.0.3 .patch | patch -p1 -d $EMSDK/upstream/emscripten && \
28
28
curl -Ls https://github.com/emscripten-core/emscripten/compare/a9651ff...kleisauke:mimalloc-update-3.0.1.patch | patch -p1 -d $EMSDK/upstream/emscripten && \
29
29
emcc --clear-cache && embuilder build sysroot --force
30
30
Original file line number Diff line number Diff line change 1
1
var LibraryVips = {
2
2
$VIPS__deps : [
3
- #if ENVIRONMENT_MAY_BE_WEB
4
3
'$ENV' ,
5
- #endif
6
4
'$ClassHandle' ,
7
5
'$Emval' ,
8
6
'$deletionQueue' ,
7
+ '$addOnPreRun' ,
8
+ '$addOnPostCtor' ,
9
9
] ,
10
10
$VIPS__postset : 'VIPS.init();' ,
11
11
$VIPS : {
@@ -27,7 +27,7 @@ var LibraryVips = {
27
27
#endif
28
28
} ) ;
29
29
30
- addOnInit ( ( ) => {
30
+ addOnPostCtor ( ( ) => {
31
31
// SourceCustom.onRead marshaller
32
32
const sourceCustom = Object . getOwnPropertyDescriptor ( Module [ 'SourceCustom' ] . prototype , 'onRead' ) ;
33
33
Object . defineProperty ( Module [ 'SourceCustom' ] . prototype , 'onRead' , {
You can’t perform that action at this time.
0 commit comments