We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9a1355 commit bb37a36Copy full SHA for bb37a36
src/tasks/AppleAppBuilder/Xcode.cs
@@ -84,7 +84,7 @@ public string GenerateXCode(
84
{
85
string libName = Path.GetFileNameWithoutExtension(lib);
86
// libmono must always be statically linked, for other librarires we can use dylibs
87
- bool dylibExists = libName != "libmonosgen-2.0" && dylibs.Any(dylib => Path.GetFileName(dylib) == libName + ".dylib");
+ bool dylibExists = libName != "libmonosgen-2.0" && libName != "libSystem.Native" && dylibs.Any(dylib => Path.GetFileName(dylib) == libName + ".dylib");
88
89
if (!preferDylibs || !dylibExists)
90
0 commit comments