On Mar 14, 2012, at 4:08 PM, Ralph wrote:
> But I didn't get it to statically link libMonoPosixHelper into that binary so 
> that Mono.Posix.dll is working.

That won't work anyway, as Mono.Posix.dll has [DllImport("MonoPosixHelper")], 
so even if you had a libMonoPosixHelper.a that you compiled into your mono, 
mono would be unable to find it as it would try to 
dlopen("libMonoPosixHelper.so").

You'd either need to patch Mono.Posix.dll to use [DllImport("__Internal")], or 
you need to change LD_LIBRARY_PATH prior to app start so that 
libMonoPosixHelper.so can be found by dlopen().

 - Jon

_______________________________________________
Monodroid mailing list
[email protected]

UNSUBSCRIBE INFORMATION:
http://lists.ximian.com/mailman/listinfo/monodroid

Reply via email to