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:
authorSedar Gokbulut <sedarg@microsoft.com>2017-01-29 06:05:03 +0300
committerJan Kotas <jkotas@microsoft.com>2017-01-29 06:05:03 +0300
commitd652ab4ef13b64d40582db236d45ee0d47caac26 (patch)
tree9f1bf8eb0f0d20a7ef2e0e8e8a98bd8f4739c7df /src/BuildIntegration/Microsoft.NETCore.Native.Unix.props
parentbf69b3a62f4479e9d499ad121648a8df73ad30c8 (diff)
Consuming Microsoft.NETCore.Native package, which brings in libSystem… (#2592)
* Consuming Microsoft.NETCore.Native package, which brings in libSystem.Globalization.Native.a Replacing the dummy globalization implementation for unix with the actual one
Diffstat (limited to 'src/BuildIntegration/Microsoft.NETCore.Native.Unix.props')
-rw-r--r--src/BuildIntegration/Microsoft.NETCore.Native.Unix.props2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/BuildIntegration/Microsoft.NETCore.Native.Unix.props b/src/BuildIntegration/Microsoft.NETCore.Native.Unix.props
index b82b5f8e9..a8d414e66 100644
--- a/src/BuildIntegration/Microsoft.NETCore.Native.Unix.props
+++ b/src/BuildIntegration/Microsoft.NETCore.Native.Unix.props
@@ -40,6 +40,7 @@ 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/libSystem.Globalization.Native.a" />
</ItemGroup>
<ItemGroup>
@@ -51,5 +52,6 @@ See the LICENSE file in the project root for more information.
<LinkerArg Include="-ldl" />
<LinkerArg Include="-lm" />
<LinkerArg Include="-lrt" Condition="'$(TargetOS)' != 'OSX'" />
+ <LinkerArg Include="-licucore" Condition="'$(TargetOS)' == 'OSX'" />
</ItemGroup>
</Project>