From 08b8f6a86f4db91adb9f381494e5af779fa5f4b0 Mon Sep 17 00:00:00 2001 From: yhuang Date: Tue, 10 Oct 2023 14:41:41 -0500 Subject: [PATCH] fix wrong lib prefix for xcode fastbuild --- .../Sharpmake.CommonPlatforms/Apple/BaseApplePlatform.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sharpmake.Platforms/Sharpmake.CommonPlatforms/Apple/BaseApplePlatform.cs b/Sharpmake.Platforms/Sharpmake.CommonPlatforms/Apple/BaseApplePlatform.cs index 04a817709..bb6f874f4 100644 --- a/Sharpmake.Platforms/Sharpmake.CommonPlatforms/Apple/BaseApplePlatform.cs +++ b/Sharpmake.Platforms/Sharpmake.CommonPlatforms/Apple/BaseApplePlatform.cs @@ -1305,7 +1305,7 @@ public void SetupPlatformLibraryOptions(out string platformLibExtension, out st { platformLibExtension = ".a"; platformOutputLibExtension = ""; - platformPrefixExtension = string.Empty; + platformPrefixExtension = "-l"; platformLibPrefix = ""; }