bytecodealliance / cranelift-jit-demo

JIT compiler and runtime for a toy language, using Cranelift
Apache License 2.0
648 stars 61 forks source link

Disable access to libc #58

Closed Dominilk closed 3 years ago

Dominilk commented 3 years ago

How can I disable the access to libc using dlysm? Thanks, Dominik

bjorn3 commented 3 years ago

There is currently no way to do this other than using a whitelist for declarable function names.

Dominilk commented 3 years ago

Okay thanks.