开发者

Which IDE tool can expediently convert .dll project (devolopped by VC) to .so project on linux platform

开发者 https://www.devze.com 2023-02-27 02:12 出处:网络
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?

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.

0

精彩评论

暂无评论...
验证码 换一张
取 消