[SOLVED] dlopen failing
When I try to use
Deno.dlopen()
like this:
I get the following error:
Does anyone know why this could be happenning and how I could solve it?
Thanks in advance.1 Reply
Nevermind;
i needed to add
--unstable-ffi
when using deno run
.
for anyone with this problem, use:
deno run --unstable-ffi --allow-ffi [filename]