[llvm] [Exegesis] CPU selection, when native arch and target mismatch (PR #131014)
Aiden Grossman via llvm-commits
llvm-commits at lists.llvm.org
Sun Mar 16 21:59:38 PDT 2025
https://github.com/boomanaiden154 commented:
> At the moment, when building llvm-exegesis for RISC-V, the --mcpu flag must be specified. If this flag is omitted, the mcpu of the architecture of the device on which the assembly takes place (often ARM or x86) will be automatically set. To address this issue, I suggest making the following changes: if the launch line does not contain the mcpu when building for a different architecture, the first one from the list of mcpu for the target architecture will be automatically selected.
Is the first CPU in the list always a sensible choice? I think it would make more sense to just error out if the user species `-mcpu=native` when the target arch is set to something different than the host.
https://github.com/llvm/llvm-project/pull/131014
More information about the llvm-commits
mailing list