From: Sasha Goldshtein Date: Tue, 7 Feb 2017 10:09:07 +0000 (-0500) Subject: Update installation instructions for FC24 and FC25 X-Git-Tag: v0.3.0~58^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6ea63a079f886f2e1f6dbb544babd479d9ce2cda;p=platform%2Fupstream%2Fbcc.git Update installation instructions for FC24 and FC25 It turns out that for FC24 and FC25, there is a sufficiently recent version of Clang in the official package sources, so we don't need to fetch it from llvm.org using wget. Tested manually on a pair of fresh FC24 and FC25 VMs, and confirmed that BCC builds and runs OK. --- diff --git a/INSTALL.md b/INSTALL.md index a821c60..824b6cc 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -209,9 +209,12 @@ sudo pip install pyroute2 wget http://llvm.org/releases/3.7.1/clang+llvm-3.7.1-x86_64-fedora22.tar.xz sudo tar xf clang+llvm-3.7.1-x86_64-fedora22.tar.xz -C /usr/local --strip 1 -# FC23 and FC24 +# FC23 wget http://llvm.org/releases/3.9.0/clang+llvm-3.9.0-x86_64-fedora23.tar.xz sudo tar xf clang+llvm-3.9.0-x86_64-fedora23.tar.xz -C /usr/local --strip 1 + +# FC24 and FC25 +sudo dnf install -y clang clang-devel llvm llvm-devel llvm-static ncurses-devel ``` ### Install and compile BCC