Skip to content

Commit

Permalink
Merge pull request #171 from riscv-software-src/e-ext-support-for-mabi
Browse files Browse the repository at this point in the history
mabi generation to account for E extension
  • Loading branch information
neelgala authored Apr 6, 2024
2 parents e21ecca + aee7b94 commit b351325
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 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: 1 addition & 1 deletion riscv_config/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from pkgutil import extend_path
__path__ = extend_path(__path__, __name__)
__version__ = '3.17.1'
__version__ = '3.18.0'

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
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 3.17.1
current_version = 3.18.0
commit = True
tag = True

Expand Down

0 comments on commit b351325

Please sign in to comment.