[main] Update dependencies from dotnet/arcade (#19548)
This commit is contained in:
commit
22ffa42d6c
4 changed files with 33 additions and 13 deletions
|
@ -238,17 +238,17 @@
|
|||
</Dependency>
|
||||
</ProductDependencies>
|
||||
<ToolsetDependencies>
|
||||
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="9.0.0-beta.24219.1">
|
||||
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="9.0.0-beta.24219.5">
|
||||
<Uri>https://github.com/dotnet/arcade</Uri>
|
||||
<Sha>b4f4d40741f161e2c0d96c19c51a4013850ef65f</Sha>
|
||||
<Sha>6b1c5542109fd5d89a9bde9eb6aacb0ad04e18bc</Sha>
|
||||
</Dependency>
|
||||
<Dependency Name="Microsoft.DotNet.CMake.Sdk" Version="9.0.0-beta.24219.1">
|
||||
<Dependency Name="Microsoft.DotNet.CMake.Sdk" Version="9.0.0-beta.24219.5">
|
||||
<Uri>https://github.com/dotnet/arcade</Uri>
|
||||
<Sha>b4f4d40741f161e2c0d96c19c51a4013850ef65f</Sha>
|
||||
<Sha>6b1c5542109fd5d89a9bde9eb6aacb0ad04e18bc</Sha>
|
||||
</Dependency>
|
||||
<Dependency Name="Microsoft.DotNet.Build.Tasks.Installers" Version="9.0.0-beta.24219.1">
|
||||
<Dependency Name="Microsoft.DotNet.Build.Tasks.Installers" Version="9.0.0-beta.24219.5">
|
||||
<Uri>https://github.com/dotnet/arcade</Uri>
|
||||
<Sha>b4f4d40741f161e2c0d96c19c51a4013850ef65f</Sha>
|
||||
<Sha>6b1c5542109fd5d89a9bde9eb6aacb0ad04e18bc</Sha>
|
||||
</Dependency>
|
||||
<Dependency Name="Microsoft.DotNet.Darc" Version="1.1.0-beta.24210.2">
|
||||
<Uri>https://github.com/dotnet/arcade-services</Uri>
|
||||
|
@ -258,14 +258,14 @@
|
|||
<Uri>https://github.com/dotnet/arcade-services</Uri>
|
||||
<Sha>9ec07c3673acf5602234c244d9465bca48f49969</Sha>
|
||||
</Dependency>
|
||||
<Dependency Name="Microsoft.DotNet.XliffTasks" Version="9.0.0-beta.24219.1">
|
||||
<Dependency Name="Microsoft.DotNet.XliffTasks" Version="9.0.0-beta.24219.5">
|
||||
<Uri>https://github.com/dotnet/arcade</Uri>
|
||||
<Sha>b4f4d40741f161e2c0d96c19c51a4013850ef65f</Sha>
|
||||
<Sha>6b1c5542109fd5d89a9bde9eb6aacb0ad04e18bc</Sha>
|
||||
</Dependency>
|
||||
<!-- Intermediate is necessary for source build. -->
|
||||
<Dependency Name="Microsoft.SourceBuild.Intermediate.arcade" Version="9.0.0-beta.24219.1">
|
||||
<Dependency Name="Microsoft.SourceBuild.Intermediate.arcade" Version="9.0.0-beta.24219.5">
|
||||
<Uri>https://github.com/dotnet/arcade</Uri>
|
||||
<Sha>b4f4d40741f161e2c0d96c19c51a4013850ef65f</Sha>
|
||||
<Sha>6b1c5542109fd5d89a9bde9eb6aacb0ad04e18bc</Sha>
|
||||
<SourceBuild RepoName="arcade" ManagedOnly="true" />
|
||||
</Dependency>
|
||||
<Dependency Name="Microsoft.Extensions.Logging.Console" Version="9.0.0-alpha.1.23612.13">
|
||||
|
|
|
@ -39,7 +39,7 @@
|
|||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<!-- Dependency from https://github.com/dotnet/arcade -->
|
||||
<MicrosoftDotNetBuildTasksInstallersPackageVersion>9.0.0-beta.24219.1</MicrosoftDotNetBuildTasksInstallersPackageVersion>
|
||||
<MicrosoftDotNetBuildTasksInstallersPackageVersion>9.0.0-beta.24219.5</MicrosoftDotNetBuildTasksInstallersPackageVersion>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<!-- Dependency from https://github.com/dotnet/arcade-services -->
|
||||
|
|
|
@ -382,6 +382,26 @@ if(TARGET_ARCH_NAME MATCHES "^(arm|armel|x86)$")
|
|||
endif()
|
||||
endif()
|
||||
|
||||
# Set C++ standard library options if specified
|
||||
set(CLR_CMAKE_CXX_STANDARD_LIBRARY "" CACHE STRING "Standard library flavor to link against. Only supported with the Clang compiler.")
|
||||
if (CLR_CMAKE_CXX_STANDARD_LIBRARY)
|
||||
add_compile_options($<$<COMPILE_LANG_AND_ID:CXX,Clang>:--stdlib=${CLR_CMAKE_CXX_STANDARD_LIBRARY}>)
|
||||
add_link_options($<$<LINK_LANG_AND_ID:CXX,Clang>:--stdlib=${CLR_CMAKE_CXX_STANDARD_LIBRARY}>)
|
||||
endif()
|
||||
|
||||
option(CLR_CMAKE_CXX_STANDARD_LIBRARY_STATIC "Statically link against the C++ standard library" OFF)
|
||||
if(CLR_CMAKE_CXX_STANDARD_LIBRARY_STATIC)
|
||||
add_link_options($<$<LINK_LANGUAGE:CXX>:-static-libstdc++>)
|
||||
endif()
|
||||
|
||||
set(CLR_CMAKE_CXX_ABI_LIBRARY "" CACHE STRING "C++ ABI implementation library to link against. Only supported with the Clang compiler.")
|
||||
if (CLR_CMAKE_CXX_ABI_LIBRARY)
|
||||
# The user may specify the ABI library with the 'lib' prefix, like 'libstdc++'. Strip the prefix here so the linker finds the right library.
|
||||
string(REGEX REPLACE "^lib(.+)" "\\1" CLR_CMAKE_CXX_ABI_LIBRARY ${CLR_CMAKE_CXX_ABI_LIBRARY})
|
||||
# We need to specify this as a linker-backend option as Clang will filter this option out when linking to libc++.
|
||||
add_link_options("LINKER:-l${CLR_CMAKE_CXX_ABI_LIBRARY}")
|
||||
endif()
|
||||
|
||||
set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)
|
||||
set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)
|
||||
set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)
|
||||
|
|
|
@ -11,8 +11,8 @@
|
|||
"cmake": "latest"
|
||||
},
|
||||
"msbuild-sdks": {
|
||||
"Microsoft.DotNet.Arcade.Sdk": "9.0.0-beta.24219.1",
|
||||
"Microsoft.DotNet.CMake.Sdk": "9.0.0-beta.24219.1",
|
||||
"Microsoft.DotNet.Arcade.Sdk": "9.0.0-beta.24219.5",
|
||||
"Microsoft.DotNet.CMake.Sdk": "9.0.0-beta.24219.5",
|
||||
"Microsoft.Build.NoTargets": "3.7.0"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue