linux and dll apps
I compiled an application that cosists of an exe project and several dll projects. It's all written using SDL and OGL so crossplatform. Is it possible to merely take the exe and run it under linux?; or must I recompile under linux? Which brings me to the next problem. If I have to recompile will it be no problem to compile the dll projects if they have no win32 specific body(just classes with __declspec(dllexport)(perhaps theres another command for this under linux)? Thanks in advance. Oh and I can't try out the first problem myself cause I dont have access to my linux comp for quite a while. -CProgrammer
You have to recompile for Linux. It uses a different format for executables. However, your SDL code should just compile without needing changes.
Unix uses .SO files instead of .DLL, so you'd need to compile your DLL projects to .SO for Linux.
Unix uses .SO files instead of .DLL, so you'd need to compile your DLL projects to .SO for Linux.
This topic is closed to new replies.
Advertisement
Popular Topics
Advertisement
Recommended Tutorials
Advertisement