From 97e7fff48aa6d3d29b1294f4345eb43ceb36da6d Mon Sep 17 00:00:00 2001 From: Sebastien Pouliot Date: Tue, 17 May 2016 11:53:36 -0400 Subject: [PATCH] [mtouch] Set default for dlsym to false for iOS (like tvOS and watchOS) In cycle 7 we turned off, by default, the `dlsym` option (i.e. looking up symbols for p/invoke) for tvOS and watchOS. However we decided to wait for iOS to see if this caused issues for existing code base. There has not been such reports (for tvOS) so, for cycle 8, we'll turn it off (and use direct calls) for iOS. If problems arise during the alpha/beta of C8 then we still can revert this change easily. --- tools/mtouch/Application.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/tools/mtouch/Application.cs b/tools/mtouch/Application.cs index 71e8ae48a81b..b06cc85ac2b8 100644 --- a/tools/mtouch/Application.cs +++ b/tools/mtouch/Application.cs @@ -220,7 +220,6 @@ public bool UseDlsym (string assembly) switch (Platform) { case ApplePlatform.iOS: - return true; case ApplePlatform.TVOS: case ApplePlatform.WatchOS: return false;