Skip to content

Commit

Permalink
riscv targets: sort mattr string
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilippvK committed Jul 22, 2024
1 parent 6ff12d0 commit ce4a8a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mlonmcu/target/riscv/riscv.py
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ def attrs(self):
@property
def attr(self):
attrs = self.attrs
return ",".join(attrs)
return ",".join(sorted(attrs))

@property
def extra_args(self):
Expand Down

0 comments on commit ce4a8a5

Please sign in to comment.