unixODBC: libmaodbc.so를 로드할 수 없습니다.

unixODBC: libmaodbc.so를 로드할 수 없습니다.

저는 임베디드 플랫폼을 개발 중이며 unixODBC를 통해 MariaDB에 액세스하려고 합니다. isql과의 연결을 테스트하려고 하면 다음과 같은 응답을 받습니다.

isql -v mydsn myuser mypw
[01000][unixODBC][Driver Manager]Can't open lib '/usr/lib/libmaodbc.so' : file not found

/usr/lib/libmaodbc.so 파일이 존재합니다:

ls -la /usr/lib/libmaodbc.so
-r-xr-xr-x    1 root     root        403952 Sep  1 00:00 /usr/lib/libmaodbc.so

그래서 나는 의존성이 누락된 것이 틀림없다고 생각합니다.

readelf -d /usr/lib/libmaodbc.so 

Dynamic section at offset 0x4fb54 contains 30 entries:
  Tag        Type                         Name/Value
 0x00000001 (NEEDED)                     Shared library: [libodbcinst.so.2]
 0x00000001 (NEEDED)                     Shared library: [libm.so.6]
 0x00000001 (NEEDED)                     Shared library: [libc.so.6]
 0x00000001 (NEEDED)                     Shared library: [ld-linux-armhf.so.3]
 0x0000000e (SONAME)                     Library soname: [libmaodbc.so]
[...]

확인을 반복했습니다. 네 가지 종속성이 모두 존재합니다.

다음으로 공유 객체를 로드하려고 시도하는 테스트 프로그램을 작성했습니다.

#include <iostream>
#include <dlfcn.h>

void tryLoadSo(const std::string& path) {
    void* so = dlopen(path.c_str(), RTLD_NOW);
    if(so) {
        std::cout << "Loaded " << path << "!" << std::endl;
        dlclose(so);
    } else {
        std::cout << "Failed to load " << path << "!" << std::endl;
    }
}

int main() {
    tryLoadSo("/usr/lib/libmaodbc.so");
    tryLoadSo("/usr/lib/libodbcinst.so.2");
    tryLoadSo("/usr/lib/libm.so.6");
    tryLoadSo("/usr/lib/libc.so.6");
    tryLoadSo("/usr/lib/ld-linux-armhf.so.3");
}

산출:

Failed to load /usr/lib/libmaodbc.so!
Loaded /usr/lib/libodbcinst.so.2!
Loaded /usr/lib/libm.so.6!
Loaded /usr/lib/libc.so.6!
Loaded /usr/lib/ld-linux-armhf.so.3!

따라서 모든 종속성을 로드할 수 있지만 libmaodbc는 로드할 수 없습니다.

공유 객체가 올바른 플랫폼으로 구성되지 않았나요? 예. 확인하기 위해 libodbcinst.so.2와 비교했습니다.

readelf -h /usr/lib/libmaodbc.so 
ELF Header:
  Magic:   7f 45 4c 46 01 01 01 00 00 00 00 00 00 00 00 00 
  Class:                             ELF32
  Data:                              2's complement, little endian
  Version:                           1 (current)
  OS/ABI:                            UNIX - System V
  ABI Version:                       0
  Type:                              DYN (Shared object file)
  Machine:                           ARM
  Version:                           0x1
  Entry point address:               0x9a58
  Start of program headers:          52 (bytes into file)
  Start of section headers:          402952 (bytes into file)
  Flags:                             0x5000400, Version5 EABI, hard-float ABI
  Size of this header:               52 (bytes)
  Size of program headers:           32 (bytes)
  Number of program headers:         7
  Size of section headers:           40 (bytes)
  Number of section headers:         25
  Section header string table index: 24

readelf -h /usr/lib/libodbcinst.so.2
ELF Header:
  Magic:   7f 45 4c 46 01 01 01 00 00 00 00 00 00 00 00 00 
  Class:                             ELF32
  Data:                              2's complement, little endian
  Version:                           1 (current)
  OS/ABI:                            UNIX - System V
  ABI Version:                       0
  Type:                              DYN (Shared object file)
  Machine:                           ARM
  Version:                           0x1
  Entry point address:               0x1e60
  Start of program headers:          52 (bytes into file)
  Start of section headers:          53528 (bytes into file)
  Flags:                             0x5000400, Version5 EABI, hard-float ABI
  Size of this header:               52 (bytes)
  Size of program headers:           32 (bytes)
  Number of program headers:         6
  Size of section headers:           40 (bytes)
  Number of section headers:         24
  Section header string table index: 23

무엇이 잘못될 수 있나요? libmaodbc.so를 로드할 수 없는 이유는 무엇입니까?

답변1

libmaodbc.so와 libmariadb.so.3은 정적으로 링크되어 있습니다. 이제 libmariadb.so.3을 동적으로 연결하면 작동합니다.

잘못되었거나 일치하지 않는 라이브러리가 연결되어 있는지 또는 다른 연결 설정이 잘못된 것인지 확실하지 않습니다(CMakeLists.txt에 문제가 있는 것일 수 있음). 그래서 아직도 근본 원인을 이해하지 못합니다. 하지만 증상은 해결되었습니다.

관련 정보