ImVexed/muon

dyld: lazy symbol binding failed: Symbol not found: _ulCreateSettings

mkmik opened this issue · 2 comments

mkmik commented

running macos 10.14.5.
I downloaded ultralight-sdk-1.0-mac-v2 and copied the dylibs in the example dir.

then I built the example with:

go generate && go build -ldflags "-r ."

when running the binary, I get:

dyld: lazy symbol binding failed: Symbol not found: _ulCreateSettings
  Referenced from: /Users/mkm/tmp/muon/examples/create-react-app/./cra-go
  Expected in: ./libAppCore.dylib

dyld: Symbol not found: _ulCreateSettings
  Referenced from: /Users/mkm/tmp/muon/examples/create-react-app/./cra-go
  Expected in: ./libAppCore.dylib

SIGABRT: abort
PC=0xfafd38e m=0 sigcode=0

goroutine 0 [idle]:

Missing ulCreateSettings means you're not using the 1.1 pre-release, it can only be downloaded from https://github.com/ultralight-ux/Ultralight#getting-the-latest-sdk

mkmik commented

thanks