From f14c2e87112908d3052326c26cf56db10d7f14c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Laban?= Date: Sun, 22 Sep 2024 21:07:56 -0400 Subject: [PATCH] fix: Remove support for `.bc` files Replace with `.o` --- src/Uno.Wasm.Bootstrap/ShellTask.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Uno.Wasm.Bootstrap/ShellTask.cs b/src/Uno.Wasm.Bootstrap/ShellTask.cs index a2c8f34b..b60cc199 100644 --- a/src/Uno.Wasm.Bootstrap/ShellTask.cs +++ b/src/Uno.Wasm.Bootstrap/ShellTask.cs @@ -736,7 +736,7 @@ private void GenerateCSPMeta(StringBuilder extraBuilder) private void GenerateBitcodeFiles() { var bitcodeFiles = Assets - ?.Where(a => a.ItemSpec.EndsWith(".bc") || a.ItemSpec.EndsWith(".a")) + ?.Where(a => a.ItemSpec.EndsWith(".o") || a.ItemSpec.EndsWith(".a")) .Where(a => !bool.TryParse(a.GetMetadata("UnoAotCompile"), out var compile) || compile) .Select(a => GetFilePaths(a).fullPath) .ToArray()