aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYordan Karadzhov (VMware) <y.karadz@gmail.com>2021-11-10 16:37:45 +0200
committerYordan Karadzhov (VMware) <y.karadz@gmail.com>2021-11-12 16:01:06 +0200
commit5276bf6598ee0671ae65d62aea244fc339fc345c (patch)
tree6542513c08147046857ce8a312b216b4cbd5f224
parent95a34b1a2ff0e35c72aecc3e6d2e0a4100f6588d (diff)
downloadkernel-shark-5276bf6598ee0671ae65d62aea244fc339fc345c.tar.gz
kernel-shark: Update the README file
Making sure that the install instructions are adequate for building with the latest versions of the third-party libraries. Signed-off-by: Yordan Karadzhov (VMware) <y.karadz@gmail.com>
-rw-r--r--README15
1 files changed, 10 insertions, 5 deletions
diff --git a/README b/README
index 652891cf..37ccd953 100644
--- a/README
+++ b/README
@@ -13,7 +13,8 @@ KernelShark has the following external dependencies:
1. In order to install the packages on Ubuntu do the following:
sudo apt-get install build-essential git cmake libjson-c-dev -y
sudo apt-get install freeglut3-dev libxmu-dev libxi-dev -y
- sudo apt-get install fonts-freefont-ttf
+ sudo apt-get install flex bison -y
+ sudo apt-get install fonts-freefont-ttf -y
sudo apt-get install qtbase5-dev -y
1.1 If you want to be able to generate Doxygen documentation:
@@ -21,12 +22,14 @@ KernelShark has the following external dependencies:
2. In order to install the packages on Fedora, as root do the following:
- dnf install gcc gcc-c++ git cmake json-c-devel -y
- dnf install freeglut-devel redhat-rpm-config -y
- dnf install qt5-qtbase-devel -y
+ sudo dnf install gcc gcc-c++ git cmake json-c-devel -y
+ sudo dnf install freeglut-devel redhat-rpm-config -y
+ sudo dnf install flex bison -y
+ sudo dnf install gnu-free-sans-fonts -y
+ sudo dnf install qt5-qtbase-devel -y
2.1 If you want to be able to generate Doxygen documentation:
- dnf install graphviz doxygen -y
+ sudo dnf install graphviz doxygen -y
3. In order to install the final dependencies do the following:
@@ -43,6 +46,8 @@ KernelShark has the following external dependencies:
git clone https://git.kernel.org/pub/scm/utils/trace-cmd/trace-cmd.git/
cd trace-cmd
make
+ make libs
+ sudo make install
sudo make install_libs
Building: