File tree Expand file tree Collapse file tree 3 files changed +18
-5
lines changed
recipe-09/fortran-example Expand file tree Collapse file tree 3 files changed +18
-5
lines changed Original file line number Diff line number Diff line change @@ -6,10 +6,16 @@ appveyor-msys:
6
6
definitions :
7
7
- CMAKE_CXX_FLAGS : ' -fno-exceptions -fno-rtti'
8
8
9
- drone :
9
+ circle-intel :
10
10
definitions :
11
11
- CMAKE_CXX_FLAGS : ' -fno-exceptions -fno-rtti'
12
12
13
+ # PGI does not understand -Wall -Wextra -Wpedantic
14
+ circle-pgi :
15
+ skip_generators :
16
+ - ' Unix Makefiles'
17
+ - ' Ninja'
18
+
13
19
travis-linux :
14
20
definitions :
15
21
- CMAKE_CXX_FLAGS : ' -fno-exceptions -fno-rtti'
Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ add_library(
16
16
add_executable (compute-areas compute-areas.f90 )
17
17
18
18
# These compiler flags will not work on Windows
19
+ # Intel or PGI
19
20
target_compile_options (geometry
20
21
PRIVATE
21
22
"-std=f2008"
Original file line number Diff line number Diff line change @@ -6,10 +6,16 @@ appveyor-msys:
6
6
failing_generators :
7
7
- ' Ninja'
8
8
9
- drone :
10
- definitions :
11
- - CMAKE_Fortran_COMPILER : ' gfortran'
12
- failing_generators :
9
+ # Intel use -std08 instead of -std=f2008
10
+ circle-intel :
11
+ skip_generators :
12
+ - ' Unix Makefiles'
13
+ - ' Ninja'
14
+
15
+ # PGI seems not to support Fortran2008 yet
16
+ circle-pgi :
17
+ skip_generators :
18
+ - ' Unix Makefiles'
13
19
- ' Ninja'
14
20
15
21
travis-linux :
You can’t perform that action at this time.
0 commit comments