Browse Source

Update LAPACK to 3.9.0

pull/2353/head
Martin Kroeker GitHub 6 years ago
parent
commit
6f80842908
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 12 additions and 4 deletions
  1. +1
    -1
      lapack-netlib/CMAKE/CheckLAPACKCompilerFlags.cmake
  2. +1
    -1
      lapack-netlib/CMAKE/FindGcov.cmake
  3. +1
    -1
      lapack-netlib/CMAKE/Findcodecov.cmake
  4. +1
    -1
      lapack-netlib/CMAKE/FortranMangling.cmake
  5. +4
    -0
      lapack-netlib/CMAKE/lapack-config-build.cmake.in
  6. +4
    -0
      lapack-netlib/CMAKE/lapack-config-install.cmake.in

+ 1
- 1
lapack-netlib/CMAKE/CheckLAPACKCompilerFlags.cmake View File

@@ -1,4 +1,4 @@
# This module checks against various known compilers and thier respective
# This module checks against various known compilers and their respective
# flags to determine any specific flags needing to be set.
#
# 1. If FPE traps are enabled either abort or disable them


+ 1
- 1
lapack-netlib/CMAKE/FindGcov.cmake View File

@@ -20,7 +20,7 @@ set(CMAKE_REQUIRED_QUIET ${codecov_FIND_QUIETLY})

get_property(ENABLED_LANGUAGES GLOBAL PROPERTY ENABLED_LANGUAGES)
foreach (LANG ${ENABLED_LANGUAGES})
# Gcov evaluation is dependend on the used compiler. Check gcov support for
# Gcov evaluation is dependent on the used compiler. Check gcov support for
# each compiler that is used. If gcov binary was already found for this
# compiler, do not try to find it again.
if(NOT GCOV_${CMAKE_${LANG}_COMPILER_ID}_BIN)


+ 1
- 1
lapack-netlib/CMAKE/Findcodecov.cmake View File

@@ -42,7 +42,7 @@ set(CMAKE_REQUIRED_QUIET ${codecov_FIND_QUIETLY})

get_property(ENABLED_LANGUAGES GLOBAL PROPERTY ENABLED_LANGUAGES)
foreach (LANG ${ENABLED_LANGUAGES})
# Coverage flags are not dependend on language, but the used compiler. So
# Coverage flags are not dependent on language, but the used compiler. So
# instead of searching flags foreach language, search flags foreach compiler
# used.
set(COMPILER ${CMAKE_${LANG}_COMPILER_ID})


+ 1
- 1
lapack-netlib/CMAKE/FortranMangling.cmake View File

@@ -24,7 +24,7 @@ message(STATUS "=========")
set(F77_OUTPUT_EXE "/Fe" CACHE INTERNAL
"Fortran compiler option for setting executable file name.")
else()
# in other case, let user specify their fortran configrations.
# in other case, let user specify their fortran configurations.
set(F77_OPTION_COMPILE "-c" CACHE STRING
"Fortran compiler option for compiling without linking.")
set(F77_OUTPUT_OBJ "-o" CACHE STRING


+ 4
- 0
lapack-netlib/CMAKE/lapack-config-build.cmake.in View File

@@ -5,6 +5,10 @@ if(_LAPACK_TARGET AND NOT TARGET "${_LAPACK_TARGET}")
endif()
unset(_LAPACK_TARGET)

# Hint for project building against lapack
set(LAPACK_Fortran_COMPILER_ID "@CMAKE_Fortran_COMPILER_ID@")

# Report the blas and lapack raw or imported libraries.
set(LAPACK_blas_LIBRARIES "@BLAS_LIBRARIES@")
set(LAPACK_lapack_LIBRARIES "@LAPACK_LIBRARIES@")
set(LAPACK_LIBRARIES ${LAPACK_blas_LIBRARIES} ${LAPACK_lapack_LIBRARIES})

+ 4
- 0
lapack-netlib/CMAKE/lapack-config-install.cmake.in View File

@@ -8,8 +8,12 @@ if(_LAPACK_TARGET AND NOT TARGET "${_LAPACK_TARGET}")
endif()
unset(_LAPACK_TARGET)

# Hint for project building against lapack
set(LAPACK_Fortran_COMPILER_ID "@CMAKE_Fortran_COMPILER_ID@")

# Report the blas and lapack raw or imported libraries.
set(LAPACK_blas_LIBRARIES "@BLAS_LIBRARIES@")
set(LAPACK_lapack_LIBRARIES "@LAPACK_LIBRARIES@")
set(LAPACK_LIBRARIES ${LAPACK_blas_LIBRARIES} ${LAPACK_lapack_LIBRARIES})

unset(_LAPACK_SELF_DIR)

Loading…
Cancel
Save