Click here to Skip to main content
15,891,248 members
Please Sign up or sign in to vote.
1.00/5 (3 votes)
See more:
i have a c++ project(windows service ) windows base on threading app i want to convert it to unix base
also i use orasql.lib to DB connection is there any tools or fast way to convert this windows service to unix service
Posted

1 solution

In general case, it's not going to happen, because the problem is not different platforms, but possible different APIs the project may use; some of the APIs can be only for Windows, some only for *NIX, some could be cross-plarform; some libraries would be installed or available on some installations of the system, and some would not. And so one. The whole idea to make a tool to transform the project to do who-knows-what on some different system would not make much sense.

You should understand that Linux and other "Unix-like" systems don't have the rigid structure based on hybrid kernel analogous to Windows. For example, desktop environments can be different, and so on.

—SA
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900