File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,8 @@ if(CMAKE_Fortran_COMPILER_ID STREQUAL GNU)
12
12
add_compile_options (-Wextra )
13
13
add_compile_options (-Wimplicit-procedure )
14
14
add_compile_options (-Wconversion-extra )
15
+ # -pedantic-errors triggers a false positive for optional arguments of elemental functions,
16
+ # see test_optval and https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95446
15
17
add_compile_options (-pedantic-errors )
16
18
if (CMAKE_Fortran_COMPILER_VERSION VERSION_GREATER_EQUAL 8.0 )
17
19
add_compile_options (-std=f2018 )
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ set(SRC
31
31
stdlib_experimental_ascii.f90
32
32
stdlib_experimental_error.f90
33
33
stdlib_experimental_kinds.f90
34
- stdlib_experimental_system.F90 # Captital extension for a reason?
34
+ stdlib_experimental_system.F90
35
35
${outFiles}
36
36
)
37
37
You can’t perform that action at this time.
0 commit comments