@@ -240,12 +240,18 @@ var LibraryDylink = {
240
240
_emscripten_dlopen_js__deps : [ function ( ) { error ( dlopenMissingError ) ; } ] ,
241
241
_dlsym_js__deps : [ function ( ) { error ( dlopenMissingError ) ; } ] ,
242
242
_dlsym_catchup_js__deps : [ function ( ) { error ( dlopenMissingError ) ; } ] ,
243
+ dlopen__deps : [ function ( ) { error ( dlopenMissingError ) ; } ] ,
244
+ _emscripten_dlopen__deps : [ function ( ) { error ( dlopenMissingError ) ; } ] ,
245
+ __dlsym__deps : [ function ( ) { error ( dlopenMissingError ) ; } ] ,
243
246
#else
244
247
$dlopenMissingError : `= ${ dlopenMissingError } ` ,
245
248
_dlopen_js__deps : [ '$dlopenMissingError' ] ,
246
249
_emscripten_dlopen_js__deps : [ '$dlopenMissingError' ] ,
247
250
_dlsym_js__deps : [ '$dlopenMissingError' ] ,
248
251
_dlsym_catchup_js__deps : [ '$dlopenMissingError' ] ,
252
+ dlopen__deps : [ '$dlopenMissingError' ] ,
253
+ _emscripten_dlopen__deps : [ '$dlopenMissingError' ] ,
254
+ __dlsym__deps : [ '$dlopenMissingError' ] ,
249
255
#endif
250
256
_dlopen_js : function ( handle ) {
251
257
abort ( dlopenMissingError ) ;
@@ -259,6 +265,16 @@ var LibraryDylink = {
259
265
_dlsym_catchup_js : function ( handle , symbolIndex ) {
260
266
abort ( dlopenMissingError ) ;
261
267
} ,
268
+ dlopen : function ( handle ) {
269
+ abort ( dlopenMissingError ) ;
270
+ } ,
271
+ _emscripten_dlopen : function ( handle , onsuccess , onerror , user_data ) {
272
+ abort ( dlopenMissingError ) ;
273
+ } ,
274
+ __dlsym : function ( handle , symbol ) {
275
+ abort ( dlopenMissingError ) ;
276
+ } ,
277
+ _dlinit : function ( main_dso_handle ) { } ,
262
278
_dlinit : function ( main_dso_handle ) { } ,
263
279
#else // MAIN_MODULE != 0
264
280
// dynamic linker/loader (a-la ld.so on ELF systems)
0 commit comments