Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndon Andonov <anandono@microsoft.com>2017-12-29 20:00:11 +0300
committerJan Kotas <jkotas@microsoft.com>2017-12-29 20:00:11 +0300
commitb01af15177f8b2124d10c31a17a1502d6613eda9 (patch)
treea911746b4d7cf921532cd1ec6451baaf1a758425 /src/BuildIntegration/Microsoft.NETCore.Native.Unix.props
parent1c66a96e23b3600435181745d8c8d885abaa0811 (diff)
Add CoreFX Static Libraries to Linker Args (#5159)
Diffstat (limited to 'src/BuildIntegration/Microsoft.NETCore.Native.Unix.props')
-rw-r--r--src/BuildIntegration/Microsoft.NETCore.Native.Unix.props7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/BuildIntegration/Microsoft.NETCore.Native.Unix.props b/src/BuildIntegration/Microsoft.NETCore.Native.Unix.props
index 5ed981fed..07df75dd3 100644
--- a/src/BuildIntegration/Microsoft.NETCore.Native.Unix.props
+++ b/src/BuildIntegration/Microsoft.NETCore.Native.Unix.props
@@ -55,6 +55,11 @@ See the LICENSE file in the project root for more information.
<ItemGroup>
<AdditionalNativeLibrary Include="$(IlcPath)/sdk/libSystem.Private.CoreLib.Native.a" />
<AdditionalNativeLibrary Include="$(IlcPath)/framework/System.Native.a" />
+ <AdditionalNativeLibrary Include="$(IlcPath)/framework/System.IO.Compression.Native.a" />
+ <AdditionalNativeLibrary Include="$(IlcPath)/framework/System.Net.Http.Native.a" />
+ <AdditionalNativeLibrary Include="$(IlcPath)/framework/System.Net.Security.Native.a" />
+ <AdditionalNativeLibrary Include="$(IlcPath)/framework/System.Security.Cryptography.Native.Apple.a" Condition="'$(TargetOS)' == 'OSX'"/>
+ <AdditionalNativeLibrary Include="$(IlcPath)/framework/System.Security.Cryptography.Native.OpenSsl.a" Condition="'$(TargetOS)' != 'OSX'"/>
<AdditionalNativeLibrary Include="$(IlcPath)/framework/libSystem.Globalization.Native.a" />
</ItemGroup>
@@ -67,6 +72,8 @@ See the LICENSE file in the project root for more information.
<LinkerArg Include="-lstdc++" />
<LinkerArg Include="-ldl" />
<LinkerArg Include="-lm" />
+ <LinkerArg Include="-lcurl" />
+ <LinkerArg Include="-lz" />
<LinkerArg Include="-luuid" Condition="'$(TargetOS)' != 'OSX'" />
<LinkerArg Include="-lrt" Condition="'$(TargetOS)' != 'OSX'" />
<LinkerArg Include="-licucore" Condition="'$(TargetOS)' == 'OSX'" />