Skip to content

Commit

Permalink
[tools] Revert workaround for dotnet/runtime#45535.
Browse files Browse the repository at this point in the history
The dotnet/runtime issue in question has been fixed.

Ref: dotnet/runtime#45535
Ref: 39948aa
  • Loading branch information
rolfbjarne committed Jun 23, 2021
1 parent 1f84aaa commit 5c7558d
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions tools/linker/MonoTouch.Tuner/ListExportedSymbols.cs
Original file line number Diff line number Diff line change
Expand Up @@ -132,13 +132,6 @@ void ProcessMethod (MethodDefinition method)

case "libSystem.Net.Security.Native":
case "System.Net.Security.Native":
#if NET
// tvOS does not ship with System.Net.Security.Native due to https://github.com/dotnet/runtime/issues/45535
if (DerivedLinkContext.App.Platform == ApplePlatform.TVOS) {
Driver.Log (4, "Did not add native reference to {0} in {1} referenced by {2} in {3}.", pinfo.EntryPoint, pinfo.Module.Name, method.FullName, method.Module.Name);
break;
}
#endif
addPInvokeSymbol = true;
break;

Expand Down

0 comments on commit 5c7558d

Please sign in to comment.