File tree Expand file tree Collapse file tree 2 files changed +3
-6
lines changed
Expand file tree Collapse file tree 2 files changed +3
-6
lines changed Original file line number Diff line number Diff line change 11# gfortran >= 6 is required
22language : c
3- fast_finish : true
43
54os :
65 - linux
@@ -12,6 +11,7 @@ group: travis_latest
1211
1312git :
1413 depth : 3
14+ quiet : true
1515
1616addons :
1717 apt :
@@ -28,8 +28,7 @@ addons:
2828before_install :
2929 - if [[ $TRAVIS_OS_NAME == osx ]]; then
3030 brew update > /dev/null;
31- brew install gcc || true > /dev/null;
32- brew link --overwrite gcc > /dev/null;
31+ brew install gcc || brew link --overwrite gcc > /dev/null;
3332 export FC=gfortran;
3433 brew install hdf5 netcdf > /dev/null;
3534 fi
Original file line number Diff line number Diff line change @@ -26,10 +26,8 @@ endif()
2626if (${CMAKE_Fortran_COMPILER_ID} STREQUAL Intel)
2727 set (FFLAGS -check all -traceback -warn -debug extended)
2828elseif (${CMAKE_Fortran_COMPILER_ID} STREQUAL GNU)
29- if (${CMAKE_Fortran_COMPILER_VERSION} VERSION_GREATER_EQUAL 8.1 )
29+ if (${CMAKE_Fortran_COMPILER_VERSION} VERSION_GREATER_EQUAL 8)
3030 set (FFLAGS -std=f2018)
31- else ()
32- set (FFLAGS -std=f2008ts)
3331 endif ()
3432 list (APPEND FFLAGS -march=native -Wall -Wextra -Wpedantic -Werror=array-bounds -fbacktrace -fcheck=all )
3533# if you've compiled these libraries with ifort, you can move them up to use with ifort
You can’t perform that action at this time.
0 commit comments