How to export symbols from a shared library

后端 未结 3 1061
梦如初夏
梦如初夏 2020-12-17 03:16

I created a shared library (*.so) using the *.o object code files (C source code) using RVDS compiler on Windows Host.

I link this shared o

3条回答
  •  攒了一身酷
    2020-12-17 04:04

    Do you know anything about the cause of the crash?

    One possibility if you are loading the shared library dynamically (e.g. via dlopen()) is that you are assuming that the library loaded OK when it didn't, and then are trying to execute functions via null pointers.

提交回复
热议问题