Skip to content

Commit

Permalink
mabi generation to account for E extension
Browse files Browse the repository at this point in the history
  • Loading branch information
neelgala committed Apr 2, 2024
1 parent e21ecca commit a7a85be
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [3.18.0] - 2024-04-02
- mabi generation to account for E extension

## [3.17.1] - 2024-02-25
- add unratified Ssdbltrp, Smdbltrp, and Sddbltrp extensions

Expand Down
2 changes: 2 additions & 0 deletions riscv_config/isa_validator.py
Original file line number Diff line number Diff line change
Expand Up @@ -235,6 +235,8 @@ def get_march_mabi (isa : str, opt_remove_custom_exts: bool = False):

# mabi generation
mabi = 'ilp32'
if 'E' in ext_list:
mabi += 'e'
if 'F' in ext_list and 'D' in ext_list:
mabi += 'd'
elif 'F' in ext_list:
Expand Down

0 comments on commit a7a85be

Please sign in to comment.