Created
December 13, 2018 09:04
-
-
Save JavierCVilla/d0b810ba299a83a4147e77f4640764f8 to your computer and use it in GitHub Desktop.
How to install `massif-visualizer` in CentOS7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
yum install epel-release | |
yum install subversion git cmake3 tar wget | |
yum install kdelibs-devel extra-cmake-modules \ | |
graphviz-devel kdepim-devel \ | |
qt5-qtsvg-devel qt5-qtxmlpatterns-devel \ | |
kf5-kparts-devel kf5-karchive-devel \ | |
kf5-kiconthemes-devel kf5-kdoctools-devel | |
git clone https://github.com/KDE/massif-visualizer | |
wget https://download.kde.org/stable/kgraphviewer/2.4.0/kgraphviewer-2.4.0.tar.xz | |
wget https://download.kde.org/stable/kdiagram/2.6.0/src/kdiagram-2.6.0.tar.xz | |
tar xf kgraphviewer-2.4.0.tar.xz | |
tar xf kdiagram-2.6.0.tar.xz | |
for DIR in kgraphviewer-2.4.0 kdiagram-2.6.0 massif-visualizer | |
do | |
cd $DIR | |
mkdir build | |
(cd build && cmake3 .. && make && make install) | |
cd - | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Credits to StackOverflow user Lightness Races in Orbit