File tree 3 files changed +11
-6
lines changed
3 files changed +11
-6
lines changed Original file line number Diff line number Diff line change @@ -1886,7 +1886,7 @@ if(USE_MKL)
1886
1886
status (" MKL include dir:" "${MKL_INCLUDE_DIRS} " )
1887
1887
endif ()
1888
1888
if (USE_OPENBLAS)
1889
- status (" OpenBLAS dir:" "${OpenBLAS_DIR } " )
1889
+ status (" OpenBLAS include dir:" "${OpenBLAS_INCLUDE_DIR } " )
1890
1890
endif ()
1891
1891
if (USE_OPENCV)
1892
1892
status (" OpenCV dir:" "${OpenCV_DIR} " )
Original file line number Diff line number Diff line change 59
59
set (OpenBLAS_INCLUDE_SEARCH_PATHS
60
60
$ENV{OpenBLAS_HOME}
61
61
$ENV{OpenBLAS_HOME} /include
62
+ $ENV{OpenBLAS_HOME} /include /openblas
62
63
$ENV{OpenBLAS_DIR}
63
64
$ENV{OpenBLAS_DIR} /include
65
+ $ENV{OpenBLAS_DIR} /include /openblas
64
66
/opt/OpenBLAS/include
65
67
/usr/local/opt/openblas/include
66
68
/usr/local/include /openblas
@@ -134,13 +136,15 @@ if(OpenBLAS_FOUND)
134
136
else ()
135
137
set (OpenBLAS_LIBRARIES ${OpenBLAS_LAPACK_LIB} )
136
138
endif ()
137
- if (NOT OpenBLAS_FIND_QUIETLY)
138
- message (STATUS "Found OpenBLAS libraries: ${OpenBLAS_LAPACK_LIB} " )
139
- message (STATUS "Found OpenBLAS include: ${OpenBLAS_INCLUDE_DIR} " )
140
- endif ()
141
139
142
140
get_filename_component (OpenBLAS_LIB_DIR ${OpenBLAS_LIB} PATH )
143
141
vp_parse_header3(OpenBLAS "${OpenBLAS_INCLUDE_DIR} /openblas_config.h" "OPENBLAS_VERSION" OpenBLAS_VERSION)
142
+ if (NOT OpenBLAS_FIND_QUIETLY)
143
+ message (STATUS "Found OpenBLAS Lapack libraries: ${OpenBLAS_LAPACK_LIB} " )
144
+ message (STATUS "Found OpenBLAS include dir: ${OpenBLAS_INCLUDE_DIR} " )
145
+ message (STATUS "Found OpenBLAS library dir: ${OpenBLAS_LIB} " )
146
+ message (STATUS "Found OpenBLAS version: ${OpenBLAS_VERSION} " )
147
+ endif ()
144
148
else ()
145
149
if (OpenBLAS_FIND_REQUIRED)
146
150
message (FATAL_ERROR "Could not find OpenBLAS" )
Original file line number Diff line number Diff line change @@ -5302,7 +5302,8 @@ void vpMbGenericTracker::testTracking()
5302
5302
tracker->testTracking ();
5303
5303
isOneTestTrackingOk = true ;
5304
5304
}
5305
- catch (...) {
5305
+ catch (const vpException &e) {
5306
+ std::cerr << " [" << it->first << " ] " << e.what () << std::endl;
5306
5307
}
5307
5308
}
5308
5309
You can’t perform that action at this time.
0 commit comments