Skip to content

Commit

Permalink
correctly test for aarch64 endianness
Browse files Browse the repository at this point in the history
  • Loading branch information
mdavidsaver committed Nov 26, 2023
1 parent 5f15a6f commit 45ae5d6
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/setuptools_dso/probe.py
Original file line number Diff line number Diff line change
Expand Up @@ -421,6 +421,8 @@ class ToolchainInfo(object):
('__i386__', 'little'),
('__ARMEB__', 'big'),
('__ARMEL__', 'little'),
('__AARCH64EB__', 'big'),
('__AARCH64EL__', 'little'),
],
}

Expand Down

0 comments on commit 45ae5d6

Please sign in to comment.