Bash script to install gcc 4.9.1 and boost 1.55.0 on CentOS 6.x, CentOS 5.x and Mac OS X 10.9

The bld.sh script provided installs gcc 4.9.1 and boost 1.55.0 on CentOS 6.x, CentOS 5.x and Mac OS X for testing. It is another entry in my continuing series of releases for different versions of g++. Hopefully this will make it easier for folks that want to experiment with this version of the GNU C++ compiler.

This script is also available on github: https://github.com/jlinoff/gcc-4.9.1-boost-1.55.

There is also a very simple Makefile: http://projects.joelinoff.com/gcc-4.9.1/Makefile that is not required but that I found useful.

This text version is also available so that you can cut-n-paste from a web page: http://projects.joelinoff.com/gcc-4.9.1/bld.sh.txt.

Please note that this is not a product. It is simply my best attempt to get it working in my development environments. For example, it does not check for packages because I try to build it on different systems that have different package managers (yum, apt, port, etc.). What this means is that if it doesn’t work for you, you will have to do some debugging. If you find a problem, please post a fix in the comment section here so that others can benefit from it.

1 Download and Install It

Here are the steps to download and install it. Root access is not required unless you need to install support packages.

The build process can take a long time depending on the speed of your CPU(s) and disks. On my test system it took more than 5 hours.

If the process fails it is most likely because packages are missing on the system.

If a problem does occur, install the package, then delete the src and bld directories and try again. If you have installed the option Makefile you can type “make clean” and then “make”.

The rtf (release to field) directory contains the releases for each package.

2 How to Use the Compiler

This section shows how to compile, link and execute a simple program using the newly installed compiler by setting up your environment properly.

You compile, link and run it as follows:

3 Disk Space Requirements

You will need about 5.5GB to download and build all of the packages. Once the build is finished you can reclaim most of the space because the released files only require about 600 MB. Here is the breakdown:

Note that the logs directory exists because I used the “make” command instead of running blds.sh directly.

Once it is built you can remove everything except the contents of the rtf directory tree to save disk space.

4 Packages

This is the list of packages that are installed in the release area.

5 Tested Platforms

These are the platforms that I actually tested the installation on.

Distro Version Arch Status Date Notes
CentOS
5.5
x86_64 Passed 2014-06-26  
CentOS
6.3
x86_64 Passed 2014-06-27 Had to manually install the glibc_devel.i686 and texinfo packages.
CentOS
6.5
x86_64 Passed 2014-06-26 Had to manually install the glibc_devel.i686 and texinfo packages.
MAC OS X
10.9.3
x86_64 Passed 2014-06-26 Used macports for setting up the environment.

Unfortunately, I do not have the bandwidth to try to get this to work on other distros (even though I have several Ubuntu boxes at hand) but it should be fairly straightforward to port because it does not rely on distro specific package management.

If you port it to another distro, please send me the changes to that I can incorporate them.

Enjoy!

One thought on “Bash script to install gcc 4.9.1 and boost 1.55.0 on CentOS 6.x, CentOS 5.x and Mac OS X 10.9”

  1. User “jeaye” posted this workaround for installation problems encountered:

    I’d like to mention that I had to unset some
    environment variables in order to get GCC to build properly.

    unset LIBRARY_PATH CPATH C_INCLUDE_PATH PKG_CONFIG_PATH
    CPLUS_INCLUDE_PATH INCLUDE

    I found this solution here:
    http://stackoverflow.com/questions/12255058/g-4-7-1-compilation-error-conflicting-types-for-strsignal

    Perhaps your script should unset these by default.

    That is a great idea. I will do that in the next release.

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.