vcpkg/ports/dlib/find_blas.patch
Sean Warren 65c02123a4 [dlib] Update to v19.17 and fix static lapack linkage (#6520)
* [dlib] Update to v19.17 and fix static lapack linkage

* [dlib] Update patchs for new dlib version
2019-05-24 09:39:59 -07:00

12 lines
437 B
Diff

--- a/dlib/cmake_utils/find_blas.cmake
+++ b/dlib/cmake_utils/find_blas.cmake
@@ -414,7 +414,7 @@
if (lapack_found)
include(CheckFunctionExists)
include(CheckFortranFunctionExists)
- set(CMAKE_REQUIRED_LIBRARIES ${lapack_libraries})
+ set(CMAKE_REQUIRED_LIBRARIES ${lapack_libraries} ${blas_libraries})
check_function_exists("sgesv" LAPACK_FOUND_C_UNMANGLED)
check_function_exists("sgesv_" LAPACK_FOUND_C_MANGLED)