在windows配置 cygwin 和 gcc
Posted _iorilan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在windows配置 cygwin 和 gcc相关的知识,希望对你有一定的参考价值。
1. install cygwin
https://www.cygwin.com/
2.copy the setup.exe under cygwin64 folder and run
C:\\cygwin64>setup-x86_64.exe -q -P wget -P gcc-g++ -P make -P diffutils -P libmpfr-devel -P libgmp-devel -P libmpc-devel
3.
wget http://ftpmirror.gnu.org/gcc/gcc-4.9.2/gcc-4.9.2.tar.gz
4.
tar xf gcc-4.9.2.tar.gz
5.
mkdir build-gcc
cd build-gcc
../gcc-4.9.2/configure --program-suffix=-4.9.2 --enable-languages=c,c++ --disable-bootstrap --disable-shared
6.
make -j4
7.
make install
cd ..8. test.cpp
#include <iostream>
int main()
auto lambda = [](auto x) return x; ;
std::cout << lambda("Hello generic lambda!\\n");
return 0;
9.
g++ --version
g++ -std=c++1y test.cpp
g++-4.9.2 -std=c++14 test.cpp
./a.exe
以上是关于在windows配置 cygwin 和 gcc的主要内容,如果未能解决你的问题,请参考以下文章
gcc和MinGW的异同(在cygwin/gcc做的东西可以无缝的用在linux下,没有任何问题,是在windows下开发linux程序的一个很好的选择)
Windows 上的 Matlab:将“mex”默认编译器更改为 Cygwin 的 GCC [重复]
cygwin 中如何安装arm-linux-gcc交叉编译器