Best way to setup a Windows build environment for C/C++

前端 未结 1 1739
刺人心
刺人心 2021-02-15 09:16

Basically I want to compile C/C++ using the GCC on Windows. The two competing platforms, as i see it, are MinGW and Cygwin. Each have their own benifits and limitations. MinGW c

1条回答
  •  深忆病人
    2021-02-15 09:44

    The easiest and best way to compile on windows is to use visual studio express. It is free. A good reason for using cygwin is for cross platform builds. A good reason to use gcc is it supports some compiler candy the Microsoft compiler doesn't.

    But all in all VC++ Express is the way to go for windows only development.

    0 讨论(0)
提交回复
热议问题