Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
B
bpftrace
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
bpftrace
Commits
f7aa0880
Commit
f7aa0880
authored
Jul 26, 2017
by
Alastair Robertson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add FindLibElf.cmake
parent
a037df7d
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
70 additions
and
3 deletions
+70
-3
CMakeLists.txt
CMakeLists.txt
+4
-0
cmake/FindLibElf.cmake
cmake/FindLibElf.cmake
+64
-0
src/CMakeLists.txt
src/CMakeLists.txt
+1
-1
tests/CMakeLists.txt
tests/CMakeLists.txt
+1
-2
No files found.
CMakeLists.txt
View file @
f7aa0880
...
...
@@ -29,6 +29,10 @@ ExternalProject_Add(bcc
BUILD_COMMAND
${
CMAKE_COMMAND
}
--build . --target bcc-static
)
set
(
CMAKE_MODULE_PATH
${
CMAKE_MODULE_PATH
}
${
CMAKE_CURRENT_SOURCE_DIR
}
/cmake
)
find_package
(
LibElf REQUIRED
)
include_directories
(
${
LIBELF_INCLUDE_DIRS
}
)
find_package
(
BISON REQUIRED
)
find_package
(
FLEX REQUIRED
)
bison_target
(
bison_parser src/parser.yy
${
CMAKE_BINARY_DIR
}
/parser.tab.cc
)
...
...
cmake/FindLibElf.cmake
0 → 100644
View file @
f7aa0880
# - Try to find libelf
# Once done this will define
#
# LIBELF_FOUND - system has libelf
# LIBELF_INCLUDE_DIRS - the libelf include directory
# LIBELF_LIBRARIES - Link these to use libelf
# LIBELF_DEFINITIONS - Compiler switches required for using libelf
#
# Copyright (c) 2008 Bernhard Walle <bernhard.walle@gmx.de>
#
# Redistribution and use is allowed according to the terms of the New
# BSD license.
# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
#
if
(
LIBELF_LIBRARIES AND LIBELF_INCLUDE_DIRS
)
set
(
LibElf_FIND_QUIETLY TRUE
)
endif
(
LIBELF_LIBRARIES AND LIBELF_INCLUDE_DIRS
)
find_path
(
LIBELF_INCLUDE_DIRS
NAMES
libelf.h
PATHS
/usr/include
/usr/include/libelf
/usr/local/include
/usr/local/include/libelf
/opt/local/include
/opt/local/include/libelf
/sw/include
/sw/include/libelf
ENV CPATH
)
find_library
(
LIBELF_LIBRARIES
NAMES
elf
PATHS
/usr/lib
/usr/local/lib
/opt/local/lib
/sw/lib
ENV LIBRARY_PATH
ENV LD_LIBRARY_PATH
)
include
(
FindPackageHandleStandardArgs
)
# handle the QUIETLY and REQUIRED arguments and set LIBELF_FOUND to TRUE if all listed variables are TRUE
FIND_PACKAGE_HANDLE_STANDARD_ARGS
(
LibElf DEFAULT_MSG
LIBELF_LIBRARIES
LIBELF_INCLUDE_DIRS
)
SET
(
CMAKE_REQUIRED_LIBRARIES elf
)
INCLUDE
(
CheckCXXSourceCompiles
)
CHECK_CXX_SOURCE_COMPILES
(
"#include <libelf.h>
int main() {
Elf *e = (Elf*)0;
size_t sz;
elf_getshdrstrndx(e, &sz);
return 0;
}"
ELF_GETSHDRSTRNDX
)
mark_as_advanced
(
LIBELF_INCLUDE_DIRS LIBELF_LIBRARIES ELF_GETSHDRSTRNDX
)
src/CMakeLists.txt
View file @
f7aa0880
...
...
@@ -31,4 +31,4 @@ include_directories(${source_dir}/src/cc)
target_link_libraries
(
bpftrace
${
binary_dir
}
/src/cc/libbpf.a
)
target_link_libraries
(
bpftrace
${
binary_dir
}
/src/cc/libbcc-loader-static.a
)
target_link_libraries
(
bpftrace
${
binary_dir
}
/src/cc/libbcc.a
)
target_link_libraries
(
bpftrace
${
CMAKE_CURRENT_SOURCE_DIR
}
/../../../../../../../usr/lib/x86_64-linux-gnu/libelf.a
)
target_link_libraries
(
bpftrace
${
LIBELF_LIBRARIES
}
)
tests/CMakeLists.txt
View file @
f7aa0880
...
...
@@ -29,8 +29,7 @@ include_directories(${source_dir}/src/cc)
target_link_libraries
(
bpftrace_test
${
binary_dir
}
/src/cc/libbpf.a
)
target_link_libraries
(
bpftrace_test
${
binary_dir
}
/src/cc/libbcc-loader-static.a
)
target_link_libraries
(
bpftrace_test
${
binary_dir
}
/src/cc/libbcc.a
)
target_link_libraries
(
bpftrace_test /usr/lib/x86_64-linux-gnu/libelf.a
)
target_link_libraries
(
bpftrace_test /usr/lib/x86_64-linux-gnu/libz.a
)
target_link_libraries
(
bpftrace_test
${
LIBELF_LIBRARIES
}
)
find_package
(
Threads REQUIRED
)
...
...
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