I can confirm that OpenCoarrays 2.0.0 works well together with gfortran 8.0.1 on a shared memory laptop computer with Linux Ubuntu 14.04 LTS (64bit) on it. A first simple test using Fortran 2018 coarray team features did work perfectly. (But please consider the current caveats with OpenCoarrays 2.0.0 described by Damian Rouson, here: https://groups.google.com/forum/#!topic/opencoarrays/hCTBKRVb4n8 ).
Problems may arise during installation, and some of the problems are unrelated to OpenCoarrays. I did use OpenCoarrays install.sh script for the installation. To do so successfully, I did 'manually' preinstall GCC 7.3.0 release (C and C++ only), GCC 8.0.1 snapshot (gfortran only), and MPICH 3.2.1 (using a simple 'trick', see below).
Some problems that I did experience:
Here is the simple trick for installing MPICH:
3 – Build and Install MPICH 3.2.1 for use with OpenCoarrays 2.0.0
3-0:
Open the Ubuntu Software-Center and install g++ (version 4.8.4), but do NOT install gfortran (4.8.4) to leave the gfortran 8.0.1 installation intact. (The OpenCoarrays installation later does require that the MPICH mpi.mod file is created by the same version of the gfortran compiler).
3-1:
Visit www.mpich.org and download the latest MPICH version 3.2.1 (stable release), with file name extension 'tar.gz' (e.g. mpich-3.2.1.tar.gz).
3-2:
Right-click and unpack the downloaded archive file.
3-3:
Open a terminal window and change to the directory with the unpacked files (using the cd command).
3-4:
To compile MPICH, enter the following commands:
./configure (this takes a little while)
make (-||-)
Exit the terminal window.
3-5:
Now, open the Ubuntu Software-Center and install gfortran (version 4.8.4). This makes gfortran 4.8.4 the currently installed compiler.
3-6:
Open a new terminal window and change to the directory with the unpacked files (using the cd command).
To install MPICH, enter 'sudo make install ' in the terminal window.
The full instructions to 'Build and Install GCC 7.3.0, gfortran 8.0.1, MPICH 3.2.1, and OpenCoarrays 2.0.0 (to allow for Fortran 2018 coarray team support) on Linux Ubuntu 14.04 LTS (64 bit)' can be found here:
cheers