修改linux下调用version动态库路径

This commit is contained in:
yangjiaxuan 2022-09-23 17:17:34 +08:00
parent da05ac2851
commit cffefbeb8c
1 changed files with 3 additions and 3 deletions

View File

@ -59,11 +59,11 @@ HGResult VersionDll::Load()
#endif
#else
#if defined(OEM_HANWANG)
strcat(dllPath, "libHwVersion.so");
strcpy(dllPath, "libHwVersion.so");
#elif defined(OEM_LISICHENG)
strcat(dllPath, "libLscVersion.so");
strcpy(dllPath, "libLscVersion.so");
#else
strcat(dllPath, "libHGVersion.so");
strcpy(dllPath, "libHGVersion.so");
#endif
#endif