mirror of
https://github.com/fluencelabs/wasmer
synced 2024-12-13 06:15:33 +00:00
Fix lua emscripten imports
This commit is contained in:
parent
9d16faab9d
commit
3cd81d4119
@ -507,6 +507,7 @@ pub fn generate_emscripten_env(globals: &mut EmscriptenGlobals) -> ImportObject
|
|||||||
|
|
||||||
// Linking
|
// Linking
|
||||||
"_dlclose" => func!(crate::linking::_dlclose),
|
"_dlclose" => func!(crate::linking::_dlclose),
|
||||||
|
"_dlerror" => func!(crate::linking::_dlerror),
|
||||||
"_dlopen" => func!(crate::linking::_dlopen),
|
"_dlopen" => func!(crate::linking::_dlopen),
|
||||||
"_dlsym" => func!(crate::linking::_dlsym),
|
"_dlsym" => func!(crate::linking::_dlsym),
|
||||||
|
|
||||||
@ -518,6 +519,9 @@ pub fn generate_emscripten_env(globals: &mut EmscriptenGlobals) -> ImportObject
|
|||||||
"global.Math" => {
|
"global.Math" => {
|
||||||
"pow" => func!(crate::math::pow),
|
"pow" => func!(crate::math::pow),
|
||||||
},
|
},
|
||||||
|
"asm2wasm" => {
|
||||||
|
"f64-rem" => func!(crate::math::f64_rem),
|
||||||
|
},
|
||||||
};
|
};
|
||||||
// mock_external!(env_namespace, _sched_yield);
|
// mock_external!(env_namespace, _sched_yield);
|
||||||
// mock_external!(env_namespace, _llvm_stacksave);
|
// mock_external!(env_namespace, _llvm_stacksave);
|
||||||
|
Loading…
Reference in New Issue
Block a user