Some Linux distributions, e.g. Red Hat, use the triple
ppc64le-redhat-linux. Add a pattern that treats ppc64le.*-linux as
powerpc64le-linux during test execution.
Details
- Reviewers
probinson qiucf - Group Reviewers
Restricted Project - Commits
- rG7f9b0685061a: [PowerPC][lit] Recognize triple ppc64le.*-linux
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
This is not changing how powerpc64le-redhat-linux is interpreted. It is just interpreting ppc64le-redhat-linux as if it were powerpc64le-linux when running lit tests.
llvm/utils/lit/lit/llvm/config.py | ||
---|---|---|
148 | Why here is target= instead of target-? |
llvm/utils/lit/lit/llvm/config.py | ||
---|---|---|
148 | Because the tests expect target=, e.g.: AFAIU, in order to start accepting target-powerpc.*, all tests using target=powerpc.* would have to be modified. |
Why here is target= instead of target-?