Skip to content

Commit 4109003

Browse files
Update dependencies from https://github.com/dotnet/arcade build 20231110.1 (#153)
[main] Update dependencies from dotnet/arcade
1 parent 2594b93 commit 4109003

File tree

4 files changed

+11
-7
lines changed

4 files changed

+11
-7
lines changed

eng/Version.Details.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,13 +49,13 @@
4949
</Dependency>
5050
</ProductDependencies>
5151
<ToolsetDependencies>
52-
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="8.0.0-beta.23525.4">
52+
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="9.0.0-beta.23560.1">
5353
<Uri>https://github.com/dotnet/arcade</Uri>
54-
<Sha>a57022b44f3ff23de925530ea1d27da9701aed57</Sha>
54+
<Sha>576b0a6fca70266087aa247d68896376ecec8c6e</Sha>
5555
</Dependency>
56-
<Dependency Name="Microsoft.DotNet.Helix.Sdk" Version="8.0.0-beta.23525.4">
56+
<Dependency Name="Microsoft.DotNet.Helix.Sdk" Version="9.0.0-beta.23560.1">
5757
<Uri>https://github.com/dotnet/arcade</Uri>
58-
<Sha>a57022b44f3ff23de925530ea1d27da9701aed57</Sha>
58+
<Sha>576b0a6fca70266087aa247d68896376ecec8c6e</Sha>
5959
</Dependency>
6060
</ToolsetDependencies>
6161
</Dependencies>

eng/common/cross/toolchain.cmake

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -288,6 +288,8 @@ elseif(TARGET_ARCH_NAME MATCHES "^(arm64|x64|riscv64)$")
288288
add_toolchain_linker_flag("-Wl,--rpath-link=${CROSS_ROOTFS}/usr/lib64")
289289
add_toolchain_linker_flag("-Wl,--rpath-link=${CROSS_ROOTFS}/usr/lib64/gcc/${TIZEN_TOOLCHAIN}")
290290
endif()
291+
elseif(TARGET_ARCH_NAME STREQUAL "s390x")
292+
add_toolchain_linker_flag("--target=${TOOLCHAIN}")
291293
elseif(TARGET_ARCH_NAME STREQUAL "x86")
292294
if(EXISTS ${CROSS_ROOTFS}/usr/lib/gcc/i586-alpine-linux-musl)
293295
add_toolchain_linker_flag("--target=${TOOLCHAIN}")
@@ -335,6 +337,8 @@ if(TARGET_ARCH_NAME MATCHES "^(arm|armel)$")
335337
if(TARGET_ARCH_NAME STREQUAL "armel")
336338
add_compile_options(-mfloat-abi=softfp)
337339
endif()
340+
elseif(TARGET_ARCH_NAME STREQUAL "s390x")
341+
add_compile_options("--target=${TOOLCHAIN}")
338342
elseif(TARGET_ARCH_NAME STREQUAL "x86")
339343
if(EXISTS ${CROSS_ROOTFS}/usr/lib/gcc/i586-alpine-linux-musl)
340344
add_compile_options(--target=${TOOLCHAIN})

eng/common/tools.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ function GetDotNetInstallScript {
310310
curl "$install_script_url" -sSL --retry 10 --create-dirs -o "$install_script" || {
311311
if command -v openssl &> /dev/null; then
312312
echo "Curl failed; dumping some information about dotnet.microsoft.com for later investigation"
313-
echo | openssl s_client -showcerts -servername dotnet.microsoft.com -connect dotnet.microsoft.com:443
313+
echo | openssl s_client -showcerts -servername dotnet.microsoft.com -connect dotnet.microsoft.com:443 || true
314314
fi
315315
echo "Will now retry the same URL with verbose logging."
316316
with_retries curl "$install_script_url" -sSL --verbose --retry 10 --create-dirs -o "$install_script" || {

global.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
}
1515
},
1616
"msbuild-sdks": {
17-
"Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.23525.4",
18-
"Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.23525.4"
17+
"Microsoft.DotNet.Arcade.Sdk": "9.0.0-beta.23560.1",
18+
"Microsoft.DotNet.Helix.Sdk": "9.0.0-beta.23560.1"
1919
}
2020
}

0 commit comments

Comments
 (0)