Skip to content

Commit 6281084

Browse files
Merge pull request #486 from weslleyspereira/try-implicit-none
Summary of PR #486: 1. There was a bug in the Makefile, and this is why AppVeyor stopped working. I solved it. 2. A recent commit was caused by a variable that was not defined, and the compiler couldn't track it. @thijssteel suggested adding `-fimplicit-none` to the CI on #484. I did it.
2 parents 0e41cf0 + d654f4b commit 6281084

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ script:
3939
-DLAPACKE:BOOL=ON
4040
-DBUILD_TESTING=ON
4141
-DLAPACKE_WITH_TMG:BOOL=ON
42+
-DCMAKE_Fortran_FLAGS:STRING="-fimplicit-none"
4243
${SRC_DIR}
4344
- ctest -D ExperimentalStart
4445
- ctest -D ExperimentalConfigure

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ CheckLAPACKCompilerFlags()
180180
# Check second function
181181

182182
include(CheckTimeFunction)
183-
set(TIME_FUNC NONE ${TIME_FUNC})
183+
set(NONE ${TIME_FUNC})
184184
CHECK_TIME_FUNCTION(NONE TIME_FUNC)
185185
CHECK_TIME_FUNCTION(INT_CPU_TIME TIME_FUNC)
186186
CHECK_TIME_FUNCTION(EXT_ETIME TIME_FUNC)

0 commit comments

Comments
 (0)