File tree Expand file tree Collapse file tree 4 files changed +11
-7
lines changed Expand file tree Collapse file tree 4 files changed +11
-7
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"tools" : {
3
- "dotnet" : " 8.0.100-rtm.23506.1 " ,
3
+ "dotnet" : " 8.0.100" ,
4
4
"runtimes" : {
5
5
"dotnet" : [
6
6
" 5.0.17" ,
10
10
}
11
11
},
12
12
"msbuild-sdks" : {
13
- "Microsoft.DotNet.Arcade.Sdk" : " 9.0.0-beta.23528 .2"
13
+ "Microsoft.DotNet.Arcade.Sdk" : " 9.0.0-beta.23572 .2"
14
14
}
15
15
}
Original file line number Diff line number Diff line change 8
8
</Dependency >
9
9
</ProductDependencies >
10
10
<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" >
12
12
<Uri >https://github.com/dotnet/arcade</Uri >
13
- <Sha >bb2b4326ddf03d86c92bd125dba87e9d8df63463 </Sha >
13
+ <Sha >c5e5051496efbcc9046b25628666377d6b97a670 </Sha >
14
14
<SourceBuild RepoName =" arcade" ManagedOnly =" true" />
15
15
</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" >
17
17
<Uri >https://github.com/dotnet/arcade</Uri >
18
- <Sha >bb2b4326ddf03d86c92bd125dba87e9d8df63463 </Sha >
18
+ <Sha >c5e5051496efbcc9046b25628666377d6b97a670 </Sha >
19
19
</Dependency >
20
20
</ToolsetDependencies >
21
21
</Dependencies >
Original file line number Diff line number Diff line change @@ -288,6 +288,8 @@ elseif(TARGET_ARCH_NAME MATCHES "^(arm64|x64|riscv64)$")
288
288
add_toolchain_linker_flag ("-Wl,--rpath-link=${CROSS_ROOTFS} /usr/lib64" )
289
289
add_toolchain_linker_flag ("-Wl,--rpath-link=${CROSS_ROOTFS} /usr/lib64/gcc/${TIZEN_TOOLCHAIN} " )
290
290
endif ()
291
+ elseif (TARGET_ARCH_NAME STREQUAL "s390x" )
292
+ add_toolchain_linker_flag ("--target=${TOOLCHAIN} " )
291
293
elseif (TARGET_ARCH_NAME STREQUAL "x86" )
292
294
if (EXISTS ${CROSS_ROOTFS} /usr/lib/gcc/i586-alpine-linux-musl )
293
295
add_toolchain_linker_flag ("--target=${TOOLCHAIN} " )
@@ -335,6 +337,8 @@ if(TARGET_ARCH_NAME MATCHES "^(arm|armel)$")
335
337
if (TARGET_ARCH_NAME STREQUAL "armel" )
336
338
add_compile_options (-mfloat-abi=softfp )
337
339
endif ()
340
+ elseif (TARGET_ARCH_NAME STREQUAL "s390x" )
341
+ add_compile_options ("--target=${TOOLCHAIN} " )
338
342
elseif (TARGET_ARCH_NAME STREQUAL "x86" )
339
343
if (EXISTS ${CROSS_ROOTFS} /usr/lib/gcc/i586-alpine-linux-musl )
340
344
add_compile_options (--target=${TOOLCHAIN} )
Original file line number Diff line number Diff line change @@ -310,7 +310,7 @@ function GetDotNetInstallScript {
310
310
curl " $install_script_url " -sSL --retry 10 --create-dirs -o " $install_script " || {
311
311
if command -v openssl & > /dev/null; then
312
312
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
314
314
fi
315
315
echo " Will now retry the same URL with verbose logging."
316
316
with_retries curl " $install_script_url " -sSL --verbose --retry 10 --create-dirs -o " $install_script " || {
You can’t perform that action at this time.
0 commit comments