summaryrefslogtreecommitdiff
path: root/NativeLauncher/tool/tac_common.cc
diff options
context:
space:
mode:
Diffstat (limited to 'NativeLauncher/tool/tac_common.cc')
-rw-r--r--NativeLauncher/tool/tac_common.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/NativeLauncher/tool/tac_common.cc b/NativeLauncher/tool/tac_common.cc
index dcd5c1d..71623b3 100644
--- a/NativeLauncher/tool/tac_common.cc
+++ b/NativeLauncher/tool/tac_common.cc
@@ -439,7 +439,7 @@ std::vector<std::string> getLibrariesInfo(const std::string& rootPath)
return LibrariesInfo;
auto convert = [&LibrariesInfo](const std::string& filepath, const std::string& filename) {
- if (filename.find(".so", filename.size() - 3) != std::string::npos) {
+ if (filename.find(".so", filename.size() - 3) != std::string::npos || filepath.rfind(".so.") != std::string::npos) {
std::string buffer = SHA256(filepath);
LibrariesInfo.push_back(filepath + ":" + buffer);
_INFO("Library : [%s] / SHA256 : [%s]", filename.c_str(), buffer.c_str());