Re: [yocto] dllmap config for a Mono app

2017-06-08 Thread Craig McQueen
Joshua Watt wrote: > On Thu, 2017-06-08 at 16:41 +1000, Craig McQueen wrote: > > I have a Mono app that uses DllImport to load some functions from > > libraries. The app can't find the libraries unless I create a Mono > > config file containing dllmap lines to map the library's plain "DLL" > > name

Re: [yocto] dllmap config for a Mono app

2017-06-08 Thread Khem Raj
On Wed, Jun 7, 2017 at 11:41 PM, Craig McQueen wrote: > I have a Mono app that uses DllImport to load some functions from libraries. > The app can't find the libraries unless I create a Mono config file > containing dllmap lines to map the library's plain "DLL" name (e.g. "foo") to > the real n

Re: [yocto] dllmap config for a Mono app

2017-06-08 Thread Joshua Watt
On Thu, 2017-06-08 at 16:41 +1000, Craig McQueen wrote: > I have a Mono app that uses DllImport to load some functions from > libraries. The app can't find the libraries unless I create a Mono > config file containing dllmap lines to map the library's plain "DLL" > name (e.g. "foo") to the real nam

[yocto] dllmap config for a Mono app

2017-06-07 Thread Craig McQueen
I have a Mono app that uses DllImport to load some functions from libraries. The app can't find the libraries unless I create a Mono config file containing dllmap lines to map the library's plain "DLL" name (e.g. "foo") to the real name of the .so file (e.g. "libfoo.so.4"). * What would be a go