Click here to Skip to main content
15,898,134 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
how can i run a c/c++ game coding in window?
which platform it needs for executing?
Posted
Comments
Richard MacCutchan 12-Dec-13 5:11am    
The platform that it was developed on. C/C++ programs are platform specific and need to be built for each platform.

you can't do that, you need to recompile it first in a windows environment

or use a dynamic language like python
 
Share this answer
 
You have a few options:

0. Recompile- cleanest, product will be fastest and native.
1. Interoperability layer- There are interoperability layers that you can use such as Wine. Fair warning, you'll need plenty of testing since Wine is essentially their representation of all of the MS system files and services.
2. Use interpreted code- Options such as C# have interpreters in Linux (Mono). Java of course is also an option and lastly, all the scripting languages usually have good cross platform support (python, perl, ruby).
 
Share this answer
 

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