注意:可能需要挂代理,才能从下面的网址下载
下载完,直接解压,然后配置一下系统变量就可以,即将./bin 添加到PATH里面
g++ -E test.cpp -o test.i
g++ -S test.cpp -o test.s
或者
g++ -O2 -S test.cpp -o test.s
g++ -c test.s -o test.o
g++ test.o -o test.exe [-L 所需库文件路径]
g++ test.cpp -o test.exe
[1] 如何离线安装MinGW-W64
[2] 科普MinGW vs MinGW-W64及其它
[3] MinGW-W64环境搭建
[4] Windows下使用MinGW在命令行编译运行C++程序
[5] C++Boost库学习之如何在VS2017中使用boost库