新手C/C++开发环境搭建

开发环境多种多样,然而在Win上我找不到一个很轻量又顺手的开发环境。

由于本人不是VIM/EMACS重度用户,这里就不用Win10新出的Linux subsystem了,直接选择TDM-GCC+Sublime的方式搭建一个轻量开发环境。

TDM-GCC是一个gcc和mingw的集成,方便安装,这里是官网介绍:It combines the most recent stable release of the GCC toolset, a few patches forWindows-friendliness, and the free and open-source MinGW or MinGW-w64 runtime APIs to create anopen-source alternative to Microsoft's compiler and platform SDK.

TDM-GCC可以从这里下载:https://sourceforge.net/projects/tdm-gcc/files/?source=navbar

然后个人还是很喜欢Sublime的:http://www.sublimetext.com/


安装完sublime和gcc之后,我们来试试它们能不能工作,老套路,hello world:


新手C/C++开发环境搭建_第1张图片

用gcc编译、运行一下:


新手C/C++开发环境搭建_第2张图片

好的,至此搭建环境完成。

你可能感兴趣的:(新手C/C++开发环境搭建)