-
Notifications
You must be signed in to change notification settings - Fork 4.7k
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
[mono] Fix linux-x64 AOT-llvm perf job #92644
Conversation
Tagging subscribers to this area: @directhex Issue DetailsBased on the findings discussed in dotnet/performance#3338 Mono Linux x64 performance job wasn't doing AOT-llvm. In this PR we are adding Additionally, we are adding cc: @kotlarmilos @directhex @LoopedBard3
|
This reverts commit fdfa9dd.
Setup x64 MonoAOT runs to be tagged as LLVM.
Based on the findings discussed in dotnet/performance#3338 Mono Linux x64 performance job wasn't doing AOT-llvm. In this PR we are adding
/p:MonoAOTEnableLLVM=true
and/p:MonoEnableLLVM=true
build flags that are needed for Ubuntu x64 to do AOT with LLVM backend.Additionally, we are adding
mono-aot-cross --llvm --version
command to the Helix job for future verification of enabled LLVM.Changing
llvm:false
tag tollvm:true
for x64 AOT Perf jobs. (Arm64 change will follow later for .NET 9)cc: @kotlarmilos @directhex @LoopedBard3