Stop Microsoft

Miscellaneous => Programming & Networking => Topic started by: shuiend on 4 August 2002, 07:08

Title: Porting software
Post by: shuiend on 4 August 2002, 07:08
if i write all my C++ code in linux how hard would it be to complile it in windows and have it work. Would there be many code changes or just a few syntax errors to fix and recompile it on the windows machine?
Title: Porting software
Post by: TheQuirk on 4 August 2002, 08:39
If you use headers that work on any platform (like iostream.h), you'll just need to compile it on windows.

If you are using linux specific headers, you'll have to find an alternatice to them on windows (like I had to on thread dos.h).