Skip to content

Commit 153b8e1

Browse files
committed
zou-flow: merge 'upstream/main' into 'main'
# zou-flow - 6.2.4.2347 net7
2 parents 0ca0e2b + 4ab1dee commit 153b8e1

File tree

4 files changed

+11
-7
lines changed

4 files changed

+11
-7
lines changed

_global.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"tools": {
3-
"dotnet": "8.0.100-rtm.23506.1",
3+
"dotnet": "8.0.100",
44
"runtimes": {
55
"dotnet": [
66
"5.0.17",
@@ -10,6 +10,6 @@
1010
}
1111
},
1212
"msbuild-sdks": {
13-
"Microsoft.DotNet.Arcade.Sdk": "9.0.0-beta.23528.2"
13+
"Microsoft.DotNet.Arcade.Sdk": "9.0.0-beta.23572.2"
1414
}
1515
}

eng/Version.Details.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@
88
</Dependency>
99
</ProductDependencies>
1010
<ToolsetDependencies>
11-
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="9.0.0-beta.23528.2">
11+
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="9.0.0-beta.23572.2">
1212
<Uri>https://github.com/dotnet/arcade</Uri>
13-
<Sha>bb2b4326ddf03d86c92bd125dba87e9d8df63463</Sha>
13+
<Sha>c5e5051496efbcc9046b25628666377d6b97a670</Sha>
1414
<SourceBuild RepoName="arcade" ManagedOnly="true" />
1515
</Dependency>
16-
<Dependency Name="Microsoft.DotNet.XliffTasks" Version="9.0.0-beta.23528.2">
16+
<Dependency Name="Microsoft.DotNet.XliffTasks" Version="9.0.0-beta.23572.2">
1717
<Uri>https://github.com/dotnet/arcade</Uri>
18-
<Sha>bb2b4326ddf03d86c92bd125dba87e9d8df63463</Sha>
18+
<Sha>c5e5051496efbcc9046b25628666377d6b97a670</Sha>
1919
</Dependency>
2020
</ToolsetDependencies>
2121
</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" || {

0 commit comments

Comments
 (0)