首页 > 代码库 > gcc4.9.2 for osx
gcc4.9.2 for osx
安装GMP
cd gmp*;mkdir build && cd build
../configure --prefix=/usr/local/gcc4.9.2 --enable-cxx
make;make install
安装MPFR
cd ../../mpfr*;mkdir build && cd build
../configure --prefix=/usr/local/gcc4.9.2 --with-gmp=/usr/local/gcc4.9.2
make;make install
安装MPC
cd ../../mpc*;mkdir build && cd build
../configure --prefix=/usr/local/gcc4.9.2 --with-gmp=/usr/local/gcc4.9.2 --with-mpfr=/usr/local/gcc4.9.2
make;make install
安装GCC
cd ../../gcc* ;mkdir build && cd build
../configure --prefix=/usr/local/gcc4.9.2 --enable-checking=release --with-gmp=/usr/local/gcc4.9.2 --with-mpfr=/usr/local/gcc4.9.2 --with-mpc=/usr/local/gcc4.9.2 --program-suffix=4.9.2
可以只需要特定语言,可以加个选项:--enable-languages=c,c++,fortran
接着:make最后:make install
配置环境变量export GCC_HOME=/usr/local/gcc4.9.2export PATH=$GCC_HOME/bin:/usr/local/bin:$PG_HOME/bin:$FIREBIRD_HOME/bin:$PATH
gcc4.9.2 for osx
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。