Commit 0606c457 authored by Alexander Dudko's avatar Alexander Dudko

Building from source on Ubuntu Trusty requires the cmake3 package to be installed

parent e5db52bf
...@@ -236,7 +236,7 @@ sudo dpkg -i *bcc*.deb ...@@ -236,7 +236,7 @@ sudo dpkg -i *bcc*.deb
To build the toolchain from source, one needs: To build the toolchain from source, one needs:
* LLVM 3.7.1 or newer, compiled with BPF support (default=on) * LLVM 3.7.1 or newer, compiled with BPF support (default=on)
* Clang, built from the same tree as LLVM * Clang, built from the same tree as LLVM
* cmake, gcc (>=4.7), flex, bison * cmake (>=3.1), gcc (>=4.7), flex, bison
* LuaJIT, if you want Lua support * LuaJIT, if you want Lua support
### Install build dependencies ### Install build dependencies
...@@ -250,7 +250,7 @@ wget -O - http://llvm.org/apt/llvm-snapshot.gpg.key | sudo apt-key add - ...@@ -250,7 +250,7 @@ wget -O - http://llvm.org/apt/llvm-snapshot.gpg.key | sudo apt-key add -
sudo apt-get update sudo apt-get update
# All versions # All versions
sudo apt-get -y install bison build-essential cmake flex git libedit-dev \ sudo apt-get -y install bison build-essential cmake3 flex git libedit-dev \
libllvm3.7 llvm-3.7-dev libclang-3.7-dev python zlib1g-dev libelf-dev libllvm3.7 llvm-3.7-dev libclang-3.7-dev python zlib1g-dev libelf-dev
# For Lua support # For Lua support
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment