Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Bump to .NET 8 pre-RC1 #762

Merged
merged 3 commits into from
Aug 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Uno.Wasm.Bootstrap/Constants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ namespace Uno.Wasm.Bootstrap
internal class Constants
{
public const string DefaultDotnetRuntimeSdkUrl = "https://unowasmbootstrap.azureedge.net/runtime/"
+ "dotnet-runtime-wasm-linux-5fcf14e-6d0e3e59dd2-5873392636-Release.zip";
+ "dotnet-runtime-wasm-linux-40dbdf8-2ec0bc7f0bb-6016800435-Release.zip";

/// <summary>
/// Min version of the emscripten SDK. Must be aligned with dotnet/runtime SDK build in <see cref="NetCoreWasmSDKUri"/>.
Expand Down
2 changes: 2 additions & 0 deletions src/Uno.Wasm.Packager/packager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1087,6 +1087,7 @@ int Run (string[] args) {
if (is_netcore)
{
runtime_libs += $"$runtime_libdir/wasm-bundled-timezones.a ";
runtime_libs += $"$runtime_libdir/libmono-wasm-simd.a ";
runtime_libs += $"$runtime_libdir/libSystem.Native.a ";
runtime_libs += $"$runtime_libdir/libSystem.IO.Compression.Native.a ";
runtime_libs += $"$runtime_libdir/libSystem.Globalization.Native.a ";
Expand Down Expand Up @@ -1349,6 +1350,7 @@ int Run (string[] args) {

aot_args += "mattr=simd,";
emcc_flags += "-msimd128 ";
emcc_flags += "-DCONFIGURATION_COMPILE_OPTIONS=\"-msimd128\" -DCONFIGURATION_INTERPSIMDTABLES_LIB=\"simd\" ";

if (is_netcore) {
emcc_flags += $"-DGEN_PINVOKE -I{src_prefix} ";
Expand Down
Loading