Skip to content
This repository was archived by the owner on Oct 12, 2022. It is now read-only.
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions install_prereqs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,10 @@ case $DISTRO in
echo 'git, svn-devel, autotools, gcc, g++, boost, openssl-devel and libpng-devel. For tracing to work, libdwarf is also required'
exit 1
;;
Debian*8*)
apt-get -y install git-core build-essential openssl libpng-dev libboost-all-dev libpng-dev libdwarf-dev subversion subversion-tools cmake
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you please also add "libssl-dev" into the packages list as by @c64cosmin comment?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Also "pkg-config" must be added, or else FindOpenSSL.cmake will fail.

exit 1
;;
*)
echo 'Distro not found! You shall need git, svn-devel, autotools, gcc, g++, boost, openssl-devel and libpng-devel to successfully build this package.'
echo 'For tracing to work, libdwarf is also required.'
Expand Down