I have a DLL project which is developped by VC++. Now I want to create a .so file on linux platform with the DLL project. How can I achieve it easily? Any IDE tool can h开发者_如何学编程elp me?
Thank you very much!If the code is written in cross platform c/c++ (=has no references to native Win32 API) you can probably just recompile the project on linux with gcc. You will have to create a makefile that would instruct gcc to build an so file for you on linux.
精彩评论