From 10d98e67d88231fd41218a93b92d42914550ee10 Mon Sep 17 00:00:00 2001 From: Marek Safar Date: Wed, 25 Jul 2018 04:30:18 +0200 Subject: [PATCH] [mtouch] Pass features not available on iOS to linker (#4426) --- external/mono | 2 +- tools/mtouch/Tuning.cs | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/external/mono b/external/mono index 639ca72904..16538b28e3 160000 --- a/external/mono +++ b/external/mono @@ -1 +1 @@ -Subproject commit 639ca72904d12bbe149c93645ff31374524e5c10 +Subproject commit 16538b28e365f5288541ffb112d965f5d191847d diff --git a/tools/mtouch/Tuning.cs b/tools/mtouch/Tuning.cs index 7d9cb7587e..19be96cd08 100644 --- a/tools/mtouch/Tuning.cs +++ b/tools/mtouch/Tuning.cs @@ -134,6 +134,7 @@ namespace MonoTouch.Tuner { context.SetParameter ("debug-build", options.DebugBuild.ToString ()); context.StaticRegistrar = options.Target.StaticRegistrar; context.Target = options.Target; + context.ExcludedFeatures = new [] { "remoting", "com", "sre" }; options.LinkContext = context; return context;