File tree Expand file tree Collapse file tree 1 file changed +6
-13
lines changed Expand file tree Collapse file tree 1 file changed +6
-13
lines changed Original file line number Diff line number Diff line change @@ -27,13 +27,7 @@ option( BUILD_SHARED_LIBS "Build shared libraries" ON )
27
27
28
28
# By default test-correctness is linked and tested against ACML library.
29
29
# However, test-correctness can instead use NETLIB as a reference library
30
- # On Mac OSX systems, this must be set to OFF for the build to succeed (due to nesting of FindBLAS code)
31
- if ( APPLE )
32
- set (CORR_TEST_WITH_ACML OFF CACHE BOOL "Use ACML library in correctness tests" )
33
- else ( )
34
- message (STATUS "CORR_TEST_WITH_ACML set to ON" )
35
- set (CORR_TEST_WITH_ACML ON CACHE BOOL "Use ACML library in correctness tests" )
36
- endif ( )
30
+ set (CORR_TEST_WITH_ACML ON CACHE BOOL "Use ACML library in correctness tests" )
37
31
38
32
if ( CMAKE_GENERATOR MATCHES "NMake" )
39
33
option ( NMAKE_COMPILE_VERBOSE "Print compile and link strings to the console" OFF )
@@ -127,15 +121,14 @@ endif()
127
121
# TODO: maybe this could be written using the FindBLAS module in the future
128
122
if ( BUILD_TEST )
129
123
if (NOT CORR_TEST_WITH_ACML )
130
- if (APPLE )
131
- message (STATUS "Trying to find Accelerate library" )
132
- find_library (BLAS_LIBRARIES Accelerate HINTS /System/Library/Frameworks/Accelerate.framework )
124
+ if (APPLE )
125
+ find_library (BLAS_LIBRARIES Accelerate )
133
126
MARK_AS_ADVANCED (BLAS_LIBRARIES )
134
127
message (STATUS "Using Accelerate framework on Mac OS-X" )
135
- else ()
128
+ else ()
136
129
find_package ( Netlib COMPONENTS BLAS REQUIRED )
137
- endif ()
138
- else ( )
130
+ endif ()
131
+ else ( )
139
132
# Find ACML BLAS implementation
140
133
# platform dependent ACML subdirectory
141
134
if (WIN32 )
You can’t perform that action at this time.
0 commit comments