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 49
49
</Dependency >
50
50
</ProductDependencies >
51
51
<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 " >
53
53
<Uri >https://github.com/dotnet/arcade</Uri >
54
- <Sha >a57022b44f3ff23de925530ea1d27da9701aed57 </Sha >
54
+ <Sha >576b0a6fca70266087aa247d68896376ecec8c6e </Sha >
55
55
</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 " >
57
57
<Uri >https://github.com/dotnet/arcade</Uri >
58
- <Sha >a57022b44f3ff23de925530ea1d27da9701aed57 </Sha >
58
+ <Sha >576b0a6fca70266087aa247d68896376ecec8c6e </Sha >
59
59
</Dependency >
60
60
</ToolsetDependencies >
61
61
</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 " || {
Original file line number Diff line number Diff line change 14
14
}
15
15
},
16
16
"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 "
19
19
}
20
20
}
You can’t perform that action at this time.
0 commit comments