Skip to content

Commit

Permalink
fix: Remove support for .bc files
Browse files Browse the repository at this point in the history
Replace with `.o`
  • Loading branch information
jeromelaban authored Sep 23, 2024
1 parent f0cb358 commit f14c2e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Uno.Wasm.Bootstrap/ShellTask.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit f14c2e8

Please sign in to comment.