OpenCV static compile on windows requires LAPACK (Bug #900)
Description
After creating static libraries on a Windows 7, 64-bit system, linking them into an application seems to require lapack. Specifically, there are reference to a LAPACK function in cv::solve.
Associated revisions
Merge pull request #900 from jet47:restore-gpu-modules
History
Updated by Vadim Pisarevsky about 14 years ago
opencv_core depends on openv_lapack. When you build OpenCV DLLs, opencv_lapack is linked into the core. When you build static libs, you have to link opencv_lapack explicitly. Add opencv_lapack to your linker settings, or use the produced by CMake OpenCVConfig.cmake, if you use CMake to generate the solution for Visual Studio.
- Status changed from Open to Done
- (deleted custom field) set to worksforme