Skip to content

Commit

Permalink
Merge pull request Reference-LAPACK#486 from weslleyspereira/try-impl…
Browse files Browse the repository at this point in the history
…icit-none

Summary of PR Reference-LAPACK#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 Reference-LAPACK#484. I did it.
  • Loading branch information
weslleyspereira committed Feb 12, 2021
2 parents c980530 + ea85b47 commit fbdd359
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .travis.yml
Expand Up @@ -39,6 +39,7 @@ script:
-DLAPACKE:BOOL=ON
-DBUILD_TESTING=ON
-DLAPACKE_WITH_TMG:BOOL=ON
-DCMAKE_Fortran_FLAGS:STRING="-fimplicit-none"
${SRC_DIR}
- ctest -D ExperimentalStart
- ctest -D ExperimentalConfigure
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Expand Up @@ -180,7 +180,7 @@ CheckLAPACKCompilerFlags()
# Check second function

include(CheckTimeFunction)
set(TIME_FUNC NONE ${TIME_FUNC})
set(NONE ${TIME_FUNC})
CHECK_TIME_FUNCTION(NONE TIME_FUNC)
CHECK_TIME_FUNCTION(INT_CPU_TIME TIME_FUNC)
CHECK_TIME_FUNCTION(EXT_ETIME TIME_FUNC)
Expand Down

0 comments on commit fbdd359

Please sign in to comment.