Displaying 2 results from an estimated 2 matches for "gccx_root".
2016 Nov 18
3
SCL devtoolset-3 or 4 without eclipse?
Is there a way to install devtoolset packages without the bloat of eclipse?
I just want the new compiler and toolchain, not a big IDE.
BTW devtoolset-3 dependencies are broken in yum with C6
yum install devtoolset-3
...
---> Package devtoolset-3-perftools.x86_64 0:3.1-12.el6 will be installed
--> Processing Dependency: devtoolset-3-dyninst for package:
2016 Nov 18
0
SCL devtoolset-3 or 4 without eclipse?
...tart of your build script...
#############################################################
. setgcc
#############################################################
The commands in the file, to run gcc from $HOME/gcc540 would be
#############################################################
export GCCX_ROOT=$HOME/gcc540
export PATH=$GCCX_ROOT/bin:$PATH
export MANPATH=$GCCX_ROOT/share/man:MANPATH
export INFOPATH=$GCCX_ROOT/share/info:$INFOPATH
export LD_LIBRARY_PATH=$GCCX_ROOT/lib64:$GCCX_ROOT/lib:$LD_LIBRARY_PATH
export LD_RUN_PATH=$GCCX_ROOT/lib64:$GCCX_ROOT/lib:$LD_RUN_PATH
export LIBRARY_PATH=$GCCX...