1.安装 Cygwin 的时候, 也选择安装上 gcc
gcc-ada: GNU Compiler Collection (Ada)
gcc-cilkplus: GNU Compiler Collection (Cilk Plus)
gcc-core: GNU Compiler Collection (C, OpenMP)
gcc-fortran: GNU Compiler Collection (Fortran)
gcc-g++: GNU Compiler Collection (C++)
gcc-objc: GNU Compiler Collection (Objective-C)
gcc-objc++: GNU Compiler Collection (Objective-C++)
gdb: The GNU Debugger
https://www.cygwin.com/setup-x86_64.exe
2. 安装后测试
$ gcc --version
$ g++ --vesion
$ gdb --version
3. 存成 test.cpp, 放在 cygwin64/home/用户名
#include <stdio.h>
int main() {
printf("Hello World!");
return 0;
}
4. 编译 CPP
$ g++ test.cpp -o test
5. 运行 test.exe
$ ./test
Hello World!
没有评论:
发表评论