Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经在我的 Windows 7 机器上安装了 Bloodshed Dev-C++编译器。现在如何从命令行编译?
int main() { return 0; }
编译:
g++ -Wall main.cpp -o main
MinGW的bin文件夹必须在路径环境变量中,对于 g++,有很多关于如何使用它的文档。据我所知,g++/MinGW 和 Linux 中的 g++ 没有区别,因此任何 Linux 教程也适用于 Windows。
bin