Hiya,
Thanks for this great tool.
Installation no longer works because this version is not compatible with newer versions of eigen. Errors are reported along the lines of:
failed with output
In file included from core/mrtrix.cpp:17:
In file included from ./core/mrtrix.h:37:
./core/types.h:326:9: error: redefinition of 'Vector3' as different kind of symbol
On forums for the main mrtrix branch, Donald offers a solution, which I think would be best put into the build instructions:
# navigate to your MRtrix3Tissue installation:
cd MRtrix3Tissue
# download Eigen repo and checkout older version:
git clone https://gitlab.com/libeigen/eigen.git
cd Eigen
git checkout 3.3.9
cd ..
# try again with appropriate flags:
EIGEN_CFLAGS="-isystem $(pwd)/eigen" ./configure
./build
Hiya,
Thanks for this great tool.
Installation no longer works because this version is not compatible with newer versions of eigen. Errors are reported along the lines of:
On forums for the main mrtrix branch, Donald offers a solution, which I think would be best put into the build instructions: