Borja
09/21/2021, 1:39 PMdyld: Library not loaded: Does anyone had the same issue? I built a minimum repro repo here: https://github.com/flaquir4/MinimumReproBig Chungus
09/21/2021, 1:47 PMBorja
09/21/2021, 1:53 PMBig Chungus
09/21/2021, 1:59 PM-I/path/to/some/dir/that/has/header/files this adds a directory to discover *.h files from
• [linkerOpt] -L/path/to/some/shared/lib/dir this adds a directory to discover shared libraries from (e.g. *.so)
• [linkerOpt] -lmyLibName this tells which libs to link against (should be discoverable from path defined by some sys defaults + -L args above)
Hope this helps, I've never actually done any apple development to tell you more. All this is coming from my experience with K/N desktop targets, but the process should be similar.Borja
09/21/2021, 2:13 PM