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:
authorJan Kotas <jkotas@microsoft.com>2015-11-10 21:51:03 +0300
committerJan Kotas <jkotas@microsoft.com>2015-11-10 21:51:03 +0300
commitf2d2b304c03a58475a6926bf78db645fed411375 (patch)
tree41b14cf0110926a367306683e3c3a674b5e9edb0
parent4e05afda01a1112fceea3f610bd4fe64d309939c (diff)
Add libSystem.Private.CoreLib.Native.a to Nuget packages
-rw-r--r--src/.nuget/toolchain.Linux-x64.Microsoft.DotNet.ILToNative.nuspec3
-rw-r--r--src/.nuget/toolchain.OSX-x64.Microsoft.Dotnet.ILToNative.nuspec3
-rw-r--r--src/Native/CMakeLists.txt2
3 files changed, 5 insertions, 3 deletions
diff --git a/src/.nuget/toolchain.Linux-x64.Microsoft.DotNet.ILToNative.nuspec b/src/.nuget/toolchain.Linux-x64.Microsoft.DotNet.ILToNative.nuspec
index e85b7d658..f14a78ca9 100644
--- a/src/.nuget/toolchain.Linux-x64.Microsoft.DotNet.ILToNative.nuspec
+++ b/src/.nuget/toolchain.Linux-x64.Microsoft.DotNet.ILToNative.nuspec
@@ -26,10 +26,11 @@
<file src="../lib/libPortableRuntime.a" target="sdk/libPortableRuntime.a" />
<file src="../lib/libbootstrapper.a" target="sdk/libbootstrapper.a" />
<file src="../lib/libbootstrappercpp.a" target="sdk/libbootstrappercpp.a" />
+ <file src="../lib/libSystem.Private.CoreLib.Native.a" target="sdk/libSystem.Private.CoreLib.Native.a" />
<file src="../System.Private.Corelib.dll" target="sdk/System.Private.Corelib.dll" />
<file src="../ToolRuntime/*.dll" />
<file src="../ToolRuntime/*.so" />
<file src="../ToolRuntime/coreconsole" target="ILToNative" />
<file src="../../../../packages/Microsoft.DiaSymReader/1.0.6/lib/portable-net45+win8/Microsoft.DiaSymReader.dll" />
</files>
-</package> \ No newline at end of file
+</package>
diff --git a/src/.nuget/toolchain.OSX-x64.Microsoft.Dotnet.ILToNative.nuspec b/src/.nuget/toolchain.OSX-x64.Microsoft.Dotnet.ILToNative.nuspec
index d4ea358ee..3abab4dff 100644
--- a/src/.nuget/toolchain.OSX-x64.Microsoft.Dotnet.ILToNative.nuspec
+++ b/src/.nuget/toolchain.OSX-x64.Microsoft.Dotnet.ILToNative.nuspec
@@ -26,10 +26,11 @@
<file src="../lib/libPortableRuntime.a" target="sdk/libPortableRuntime.a" />
<file src="../lib/libbootstrapper.a" target="sdk/libbootstrapper.a" />
<file src="../lib/libbootstrappercpp.a" target="sdk/libbootstrappercpp.a" />
+ <file src="../lib/libSystem.Private.CoreLib.Native.a" target="sdk/libSystem.Private.CoreLib.Native.a" />
<file src="../System.Private.Corelib.dll" target="sdk/System.Private.Corelib.dll" />
<file src="../ToolRuntime/*.dll" />
<file src="../ToolRuntime/*.dylib" />
<file src="../ToolRuntime/coreconsole" target="ILToNative" />
<file src="../../../../packages/Microsoft.DiaSymReader/1.0.6/lib/portable-net45+win8/Microsoft.DiaSymReader.dll" />
</files>
-</package> \ No newline at end of file
+</package>
diff --git a/src/Native/CMakeLists.txt b/src/Native/CMakeLists.txt
index b5fed91a1..072861310 100644
--- a/src/Native/CMakeLists.txt
+++ b/src/Native/CMakeLists.txt
@@ -180,6 +180,6 @@ add_subdirectory(Runtime)
add_subdirectory(Bootstrap)
# We don't need the PAL on Windows.
-if(CMAKE_SYSTEM_NAME STREQUAL Linux)
+if(CLR_CMAKE_PLATFORM_UNIX)
add_subdirectory(System.Private.CoreLib.Native)
endif()