You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Running CMake 3.6.2 (which is the default now in Fedora 25 when you run dnf install cmake) fails with
-- MAGMA support requested. Searching at MAGMA_ROOT=.
-- Found PkgConfig: /usr/bin/pkg-config (found version "0.29.1")
-- Checking for one of the modules 'magma;magma_sparse'
CMake Error at /usr/share/cmake/Modules/FindPkgConfig.cmake:646 (message):
None of the required 'magma;magma_sparse' found
Call Stack (most recent call first):
cmake/Modules/FindMAGMA.cmake:61 (pkg_search_module)
solvers/CMakeLists.txt:54 (find_package)
when the user does not have MAGMA installed. Later versions of CMake prefer
if (MAGMA_ROOT) (works for3.6.2)
instead of
if (NOT MAGMA_ROOT STREQUAL "") (does not work for3.6.2)
The text was updated successfully, but these errors were encountered:
N.B. - I originally implemented it using the former method, but switched to the latter after I encountered some problems. Maybe those problems were symptoms of other things and this will work fine, but it is important to note that it didn't initially work correctly.
Running CMake 3.6.2 (which is the default now in Fedora 25 when you run dnf install cmake) fails with
when the user does not have MAGMA installed. Later versions of CMake prefer
instead of
The text was updated successfully, but these errors were encountered: