Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
B
bcc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
bcc
Commits
7d29a461
Commit
7d29a461
authored
Apr 26, 2016
by
Brenden Blanco
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #507 from vmg/vmg/elf-so
Explicitly list the libelf runtime dependency
parents
b1472950
11d107c8
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
3 deletions
+5
-3
SPECS/bcc+clang.spec
SPECS/bcc+clang.spec
+1
-0
SPECS/bcc.spec
SPECS/bcc.spec
+1
-0
debian/control
debian/control
+1
-1
src/lua/CMakeLists.txt
src/lua/CMakeLists.txt
+2
-2
No files found.
SPECS/bcc+clang.spec
View file @
7d29a461
...
...
@@ -57,6 +57,7 @@ make install/strip DESTDIR=%{buildroot}
%package -n libbcc
Summary: Shared Library for BPF Compiler Collection (BCC)
Requires: elfutils-libelf
%description -n libbcc
Shared Library for BPF Compiler Collection (BCC)
...
...
SPECS/bcc.spec
View file @
7d29a461
...
...
@@ -48,6 +48,7 @@ make install/strip DESTDIR=%{buildroot}
%package -n libbcc
Summary: Shared Library for BPF Compiler Collection (BCC)
Requires: elfutils-libelf
%description -n libbcc
Shared Library for BPF Compiler Collection (BCC)
...
...
debian/control
View file @
7d29a461
...
...
@@ -8,7 +8,7 @@ Homepage: https://github.com/iovisor/bcc
Package: libbcc
Architecture: amd64
Depends: libc6, libstdc++6
Depends: libc6, libstdc++6
, libelf1
Description: Shared Library for BPF Compiler Collection (BCC)
Shared Library for BPF Compiler Collection to control BPF programs
from userspace.
...
...
src/lua/CMakeLists.txt
View file @
7d29a461
find_package
(
LuaJIT
)
find_program
(
LUAJIT luajit
)
if
(
LUAJIT_LIBRARIES
)
find_program
(
LUAJIT luajit
)
if
(
LUAJIT_LIBRARIES AND LUAJIT
)
FILE
(
GLOB_RECURSE SRC_LUA
${
CMAKE_CURRENT_SOURCE_DIR
}
/bcc/*/*.lua
)
ADD_CUSTOM_COMMAND
(
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment