Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ index 52b3520..01b13a9 100644
+if True:
+ def find_library(name):
+ # Check the user app lib dir
+ app_root = os.path.abspath('./').split(os.path.sep)[0:4]
+ app_root = os.path.abspath('../../').split(os.path.sep)
+ lib_search = os.path.sep.join(app_root) + os.path.sep + 'lib'
+ for filename in os.listdir(lib_search):
+ if filename.endswith('.so') and name in filename:
Expand Down