Skip to content

Commit

Permalink
Merge pull request #61 from ValKmjolnir/develop
Browse files Browse the repository at this point in the history
🐛 fix package error
  • Loading branch information
ValKmjolnir authored Jan 11, 2025
2 parents fc2bb80 + 644fbd8 commit 8435ac5
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tools/pack.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,12 @@
dynamic_library_suffix = ""
if platform.system()=="Windows":
dynamic_library_suffix = ".dll"
else:
elif platform.system()=="Linux":
dynamic_library_suffix = ".so"
elif platform.system()=="Darwin":
dynamic_library_suffix = ".dylib"
else:
print("pack binaries failed: unsupported platform")

nasal_modules = []
for m in ["libfib", "libkey", "libmat", "libnasock"]:
Expand Down

0 comments on commit 8435ac5

Please sign in to comment.