-
-
Notifications
You must be signed in to change notification settings - Fork 272
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix cross compilation issue with linux-mips64 architecture
When compiling under Yocto project for linux-mips64 target architecture .so files were generated incorrectly as: rpds.cpython-312-mips64-linux-gnu.so Where as platform and EXT_SUFFIX are defined as: >>> sysconfig.get_platform() 'linux-mips64' >>> sysconfig.get_config_vars()['EXT_SUFFIX'] '.cpython-312-mips64-linux-gnuabi64.so' Which should have caused the .so files as: rpds.cpython-312-mips64-linux-gnuabi64.so Signed-off-by: Vesa Jääskeläinen <[email protected]>
- Loading branch information
1 parent
235041e
commit 32b0d26
Showing
2 changed files
with
25 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters