昨天从oschina看到CodeLite的消息,是不是out了,哈哈。
今天就迫不及待的测试下,安装流程如下:
(1)下载完整安装包:
http://sourceforge.net/projects/codelite/files/Releases/codelite-3.0/
安装完毕。
(2)编译器选择:
Settings->Debug Setting->Debug Path : 找到安装过程中的MinGW GDB.EXE的路径
(3)新建一个workspace,new a project
(4)new a file
#include <stdio.h>
#include <iostream>
#include <limits>
#include <istream>
#include <ostream>
int main(int argc, char **argv)
{
printf("hello world\n");
int c=0;
std::cin>>c;
return 0;
}
(5)保存为 main.cpp
(6)启动运行