Skip to content

Commit

Permalink
Add Linux-arm
Browse files Browse the repository at this point in the history
  • Loading branch information
rmanhaeve committed Oct 25, 2024
1 parent 280faca commit 6c7a4e9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
Binary file added pysdd/lib/sdd-2.0/lib/Linux-arm/libsdd.a
Binary file not shown.
Binary file added pysdd/lib/sdd-2.0/lib/Linux-arm/libsdd.so
Binary file not shown.
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,10 @@ def build_extensions(self):
cur_lib_path = cur_lib_path / "debug"
libsdd_path = cur_lib_path / "libsdd.a"
elif "Linux" in platform.system():
cur_lib_path = lib_path / "Linux"
if "arm" in platform.platform():
cur_lib_path = lib_path / "Linux-arm"
else:
cur_lib_path = lib_path / "Linux"
libsdd_path = cur_lib_path / "libsdd.a"
elif "Windows" in platform.system():
cur_lib_path = lib_path / "Windows"
Expand Down

0 comments on commit 6c7a4e9

Please sign in to comment.