Can I compile a DLL Project to a Shared Object (.so) File for ARM?
Can I compile a DLL Project to a Shared Object (.so) File for ARM?
I have a Microsoft Visual C++ Project with configuration type .dll.
And I want this library to work in my linux system as well,, so how can I compile source code to a .so file???
1 Answer
1
Use the C++ for Linux add-in for Visual Studio, which is described in this MSDN blog post: Visual C++ for Linux Development
Then:
Visual C++ / Cross Platform / Linux / Empty Project
General
Configuration Type
Dynamic Library (.so)
By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.