You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am writing Python binding for bark.cpp and due to the specific add_library(${ENCODEC_LIB} STATIC encodec.cpp encodec.h), I could not use a high-level CmakeLists.txt to build the .so file for encodec.cpp. We should add option to build share library:
option(BUILD_SHARED_LIBS "build shared libraries" OFF) add_library(${ENCODEC_LIB} encodec.cpp encodec.h)
This should be applied on the bark.cpp as well
The text was updated successfully, but these errors were encountered:
Actually, I still need to wait for the success PR of bark.cpp syncing up with the latest encoded PABannier/bark.cpp#199 to be able to apply this PR. But anyway, thank you for your great support. I will close this issue.
I am writing Python binding for bark.cpp and due to the specific
add_library(${ENCODEC_LIB} STATIC encodec.cpp encodec.h)
, I could not use a high-level CmakeLists.txt to build the .so file for encodec.cpp. We should add option to build share library:option(BUILD_SHARED_LIBS "build shared libraries" OFF) add_library(${ENCODEC_LIB} encodec.cpp encodec.h)
This should be applied on the bark.cpp as well
The text was updated successfully, but these errors were encountered: