Using both .so and .dll on Windows

后端 未结 3 1768
猫巷女王i
猫巷女王i 2020-12-17 01:04

I am writing a program in windows in C++ in which users will be able to compile extensions in the form of dynamic-link libraries (windows), or shared object files (linux). <

3条回答
  •  清酒与你
    2020-12-17 01:46

    AFAIK, they way that Windows and Linux handle shared function calls are very different (how variables are stored on the stack, for one), so the .so files will not work on Win32 platform, and .dlls will not work on Linux.

提交回复
热议问题