Skip to content

Commit 628a209

Browse files
Fix bug thanks to @langou. Defines LAPACK_FORTRAN_STRLEN_END by default, following @mgates3 comments in @512 and LAPACK++ convention
1 parent d3e64d6 commit 628a209

File tree

4 files changed

+115
-104
lines changed

4 files changed

+115
-104
lines changed

.travis.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,32 +15,32 @@ matrix:
1515
include:
1616
- os: linux
1717
name: "CMake Release Test on Linux"
18-
env: CMAKE_BUILD_TYPE=Release CMAKE_C_FLAGS=-DLAPACK_FORTRAN_STRLEN_END
18+
env: CMAKE_BUILD_TYPE=Release
1919
- os: linux
2020
name: "Makefile Test on Linux"
2121
script:
2222
- rm -f make.inc
2323
- cp make.inc.example make.inc
24-
- make -s -j2 all
24+
- make FFLAGS="-fimplicit-none -frecursive -fcheck=all" -s -j2 all
2525
- make -j2 lapack_install
2626
- os: linux
2727
name: "CMake Coverage Test on Linux"
28-
env: CMAKE_BUILD_TYPE=Coverage CMAKE_C_FLAGS=-DLAPACK_FORTRAN_STRLEN_END
28+
env: CMAKE_BUILD_TYPE=Coverage
2929
- os: osx
3030
name: "CMake Release Test on Mac OS X"
3131
osx_image: xcode10.3
32-
env: CMAKE_BUILD_TYPE=Release CMAKE_C_FLAGS=-DLAPACK_FORTRAN_STRLEN_END
32+
env: CMAKE_BUILD_TYPE=Release
3333
- os: osx
3434
name: "CMake Release Test on OSX Catalina"
3535
osx_image: xcode12.2
36-
env: CMAKE_BUILD_TYPE=Release CMAKE_C_FLAGS=-DLAPACK_FORTRAN_STRLEN_END
36+
env: CMAKE_BUILD_TYPE=Release
3737
- os: osx
3838
osx_image: xcode10.3
3939
name: "Makefile Test on Mac OS X"
4040
script:
4141
- rm -f make.inc
4242
- cp make.inc.example make.inc
43-
- make -s -j2 all
43+
- make FFLAGS="-fimplicit-none -frecursive -fcheck=all" -s -j2 all
4444
- make -j2 lapack_install
4545

4646
before_script:

0 commit comments

Comments
 (0)