Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[lapack-reference] enable fortran if possible for find blas #14765

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ports/lapack-reference/CONTROL
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Source: lapack-reference
Version: 3.8.0
Port-Version: 3
Port-Version: 4
Description: LAPACK — Linear Algebra PACKage http://www.netlib.org/lapack/
Default-Features: blas-select
Build-Depends: vcpkg-gfortran (windows)
Expand Down
6 changes: 6 additions & 0 deletions ports/lapack-reference/FindLAPACK.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,12 @@ This module defines the following variables:
find_package(LAPACK)
#]=======================================================================]

include(${CMAKE_ROOT}/Modules/CheckLanguage.cmake)
check_language(Fortran)
if (CMAKE_Fortran_COMPILER)
enable_language(Fortran)
endif()

enable_language(C)
# Check the language being used
if(NOT (CMAKE_C_COMPILER_LOADED OR CMAKE_CXX_COMPILER_LOADED OR CMAKE_Fortran_COMPILER_LOADED))
Expand Down