Skip to content

Commit

Permalink
Merge pull request ggerganov#13 from pixelkaiser/rwkv-macos
Browse files Browse the repository at this point in the history
we actually build a dylib on macos
  • Loading branch information
saharNooby authored Apr 4, 2023
2 parents aacc8b6 + 977efba commit 77e1998
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rwkv/rwkv_cpp_shared_library.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ def load_rwkv_shared_library() -> RWKVSharedLibrary:
if 'win32' in sys.platform or 'cygwin' in sys.platform:
file_name = 'rwkv.dll'
elif 'darwin' in sys.platform:
file_name = 'rwkv.o'
file_name = 'librwkv.dylib'
else:
file_name = 'librwkv.so'

Expand Down

0 comments on commit 77e1998

Please sign in to comment.