Accessing .so libraries using dlopen() throws undefined symbol error

后端 未结 4 1700
生来不讨喜
生来不讨喜 2021-02-04 09:55

I\'m trying to dynamically load a camera library .so file into a Linux executable to gain access to simple camera functions.

I\'m attempting to do this by:



        
4条回答
  •  名媛妹妹
    2021-02-04 10:27

    In your source code for libCamera.so, you have unresolved external symbol. It means that type_infoE have no definition in your source code and should be resolved.

提交回复
热议问题