outofroutine
outofroutine14mo ago

Compiled binary from Cross-Platform CLI example will not work

Going through https://deno.com/blog/build-cross-platform-cli and running the output file, I get
Symbol not found: _sqlite3_unlock_notify
Symbol not found: _sqlite3_unlock_notify
in MacOS. what am i missing here?
8 Replies
Testersen™
Testersen™14mo ago
You might need to run with --unstable
outofroutine
outofroutine14mo ago
Already compiling with --unstable, just like the given code block in the page. And without compiling, running the main.ts directly (deno run) it works
Testersen™
Testersen™14mo ago
Are you on the latest version?
outofroutine
outofroutine14mo ago
yes. i just installed to try out Deno for the first time after reading this blog.. however things seem not to be working
lcasdev
lcasdev14mo ago
@outofroutine did you install via brew?
outofroutine
outofroutine14mo ago
yes correct
lcasdev
lcasdev14mo ago
can you install with the curl script, and try again? there is a bug with the brew build that will hopefully be fixed next release
outofroutine
outofroutine14mo ago
that indeed helped! thanks a lot @lucacasonato