g2o: include dependencies necessary to build CHOLMOD
Previously, CHOLMOD was enabled but not built because blas and lapack were missing.
This commit is contained in:
parent
fd2233556f
commit
d6be909d9b
@ -1,5 +1,5 @@
|
|||||||
{ lib, stdenv, mkDerivation, fetchFromGitHub, cmake, eigen, suitesparse, libGLU
|
{ lib, stdenv, mkDerivation, fetchFromGitHub, cmake, eigen, suitesparse, blas
|
||||||
, qtbase, libqglviewer, makeWrapper }:
|
, lapack, libGLU, qtbase, libqglviewer, makeWrapper }:
|
||||||
|
|
||||||
mkDerivation rec {
|
mkDerivation rec {
|
||||||
pname = "g2o";
|
pname = "g2o";
|
||||||
@ -18,7 +18,7 @@ mkDerivation rec {
|
|||||||
separateDebugInfo = true;
|
separateDebugInfo = true;
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake makeWrapper ];
|
nativeBuildInputs = [ cmake makeWrapper ];
|
||||||
buildInputs = [ eigen suitesparse libGLU qtbase libqglviewer ];
|
buildInputs = [ eigen suitesparse blas lapack libGLU qtbase libqglviewer ];
|
||||||
|
|
||||||
# Silence noisy warning
|
# Silence noisy warning
|
||||||
CXXFLAGS = "-Wno-deprecated-copy";
|
CXXFLAGS = "-Wno-deprecated-copy";
|
||||||
|
Loading…
Reference in New Issue
Block a user