-
Notifications
You must be signed in to change notification settings - Fork 333
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
Improvements and fixes for VeeR-EL2 testing #1001
Conversation
This commit fixes the way that the `c` extension is disabled, i.e. removed from the arch ISA string. Without this change, for GCC versions where Zicsr and Zifencei constitute separate extensions, the following ISA string: rv32imc_zicsr_zifencei_zba_zbb_zbc_zbs Would be changed to (note incorrect `_zisr` vs correct `_zicsr`): rv32im_zisr_zifenei_zba_zbb_zb_zbs Instead of the expected: rv32im_zicsr_zifencei_zba_zbb_zbc_zbs Signed-off-by: Filip Kokosinski <[email protected]>
Signed-off-by: Filip Kokosinski <[email protected]>
Signed-off-by: Mateusz Karlic <[email protected]>
Signed-off-by: Mateusz Karlic <[email protected]>
Signed-off-by: Mateusz Karlic <[email protected]>
Hi @kgugala, can you provided some detail on what this PR accomplishes? |
Signed-off-by: Wiktoria Kuna <[email protected]>
Signed-off-by: Wiktoria Kuna <[email protected]>
Some of the 'I' ext instructions were once moved to separate Zicsr and Zifencei extensions. For newer toolchains the 'Z' extensions need to be explicitly requested in '-march'. Signed-off-by: Wiktoria Kuna <[email protected]>
Signed-off-by: Wiktoria Kuna <[email protected]>
workflows: Update upload-artifacts to v4
@MikeOpenHWGroup This PR collects a few other PRs fixing a few small bugs and adds some useful features. We've updated the description of the PR with links to other PRs and some more info |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
This PR introduces the following changes:
c
extension run: fix disabling thec
extension #988