We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb6c931 commit 779047fCopy full SHA for 779047f
src/Xamarin.Android.Build.Tasks/Tasks/GetAotAssemblies.cs
@@ -68,8 +68,8 @@ public override Task RunTaskAsync ()
68
} else {
69
assembly.SetMetadata ("AotArguments", $"asmwriter,temp-path={temp}{aotProfiles}");
70
}
71
- // NOTE: JIT doesn't support simd, Profiled AOT would be mixed JIT & AOT
72
- if (EnableLLVM && Profiles != null && Profiles.Length > 0) {
+ // NOTE: always disable simd when using LLVM
+ if (EnableLLVM) {
73
assembly.SetMetadata ("ProcessArguments", "-O=-simd");
74
75
0 commit comments