In this tutorial, I will show you how to compile from source and install the current stable version of GCC with Graphite loop optimizations on your OS X computer. The instructions from this tutorial were tested with Xcode 6.0.1 and Yosemite (OS X 10.10). Clang, the default compiler for OS X, supports only C, C++ and Objective-C. If you are interested in a modern Fortran compiler, for e.g., you will need gfortran that comes with GCC. Another reason to have the latest stable version of GCC on you Mac is that it provides you with an alternative C and C++ compiler. Testing your code with two different compilers is always a good idea. In order to compile GCC from sources you will need a working C++ compiler. In the remaining of this article I will assume that you have installed the Command Line Tools for Xcode. At the time of this writing Apple’s Command Line Tools maps the gcc and g++ to clang and clang++.
Let’s start by downloading the last stable version of GCC from the GNU website, so go to:http://gcc.gnu.org/mirrors.html and download gcc-4.9.2.tar.bz2. I’ve saved the archive in my Downloadsfolder. We will also need three other libraries for a successful build of gcc: mpc, mpfr and gmp. Use the above links and download the last versions for all of them: gmp-6.0.0a.tar.bz2, mpc-1.0.2.tar.gz and mpfr-3.1.2.tar.bz2, also save them in your Downloads folder. For enabling the Graphite loop optimizations you will need two extra libraries, go toftp://gcc.gnu.org/pub/gcc/infrastructure/ and download isl-0.12.2.tar.bz2 and cloog-0.18.1.tar.gz.
Extract the above six archives in your Downloads folder and open a Terminal window.
We will start by compiling the gmp library:
|
|
Create a new folder named build in which the compiler will save the compiled library:
|
|
And now the fun part … write in your Terminal:
|
|
If you see no error message we can actually compile the gmp library:
|
|
In a few minutes you will have a compiled gmp library. If you see no error message … congratulations, we are ready to install the library in the /usr/gcc-4.9.2 folder (you will need the administrator password for this):
|
|
We will do the same steps for MPFR now:
|
|
Configuration phase:
|
|
The second parameter will just inform the configure app that gmp is already installed in /usr/gcc-4.9.2.
After the configure phase is finished, we can make and install the library:
|
|
Now, we are going to build MPC:
|
|
At this time you should have finished to build and install the necessary prerequisites for GCC.
Next step is to build the libraries for the Graphite loop optimizations:
|
|
We are ready to compile GCC now. Be prepared that this could take more than one hour on some machines … Since I’m interested only in the C, C++ and Fortran compilers, this is the configure command I’ve used on my machine:
|
|
The above command instructs the configure app where we have installed gmp, mpfr, mpc, ppl and cloog; also it tells to add a prefix to all the resulting executable programs, so for example if you will invoke GCC 4.9.2 you will write gcc-4.9.2, the gcc command will invoke Apple’s version of clang.
If you are interested in building more compilers available in the GCC collection modify the –enable-languages configure option.
And now, the final touches:
|
|
Grab a coffee, maybe a book, and wait … this should take approximately, depending on your computer configuration, an hour … or more … and about 2GB of your disk space for the build folder.
Install the compiled gcc in /usr/gcc-4.9.2:
|
|
Now, you can keep the new compiler completely isolated from your Apple’s gcc compiler and, when you need to use it, just modify your path by writing in Terminal:
|
|
If you want to avoid writing the above command each time you open a Terminal, save the above command in the file .bash_profile from your Home folder.
You should be able to invoke any of the newly compiled compilers C, C++, Fortran …, invoking g++ is as simple as writing in your Terminal:
|
|
Remember to erase your build directories from Downloads if you want to recover some space.
Let’s check if g++-4.9.2 can compile some C++11 specifics. In your favorite text editor, copy and save this test program (I’ll assume you will save the file in your Home directory):
|
|
Compiling and running the above lambda example:
|
|
We could also compile a C++ code that uses the new thread header from C++11:
|
|
GCC 4.9.2, finally, implements the C++11 regex header. Next, we present a simple C++11 code that uses regular expressions to check if the input read from stdin is a floating point number:
|
|
If you are a Fortran programmer, you can use some of the Fortran 2008 features like do concurrent with gfortran-4.9.2:
|
|
The above code can be compiled with (assuming you’ve named it tst_concurrent_do.f90):
|
|
from https://solarianprogrammer.com/2013/06/11/compiling-gcc-mac-os-x/