Displaying 2 results from an estimated 2 matches for "installinggcc".
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?
...ote
> 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
You can do it manually as per the instructions at
https://gcc.gnu.org/wiki/InstallingGCC
Step 1) Download and extract the tarball for the gcc version you need.
I'll use gcc-5.4.0 in this example. Substitute whichever version you
actually need.
#############################################################
wget http://ftpmirror.gnu.org/gcc/gcc-5.4.0/gcc-5.4.0.tar.bz2
tar xjf gcc-5...