- 09 Oct, 2018 8 commits
-
-
Brendan Gregg authored
INSTALL.md: add clang-devel as Fedora build dep
-
Henrik Nymann Jensen authored
-
Brendan Gregg authored
-
Scott Tsai authored
List clang-devel as a build dependency on Fedora. Otherwise 'cmake' fails with: ``` CMake Error at CMakeLists.txt:67 (find_package): By not providing "FindClang.cmake" in CMAKE_MODULE_PATH this project has asked CMake to find a package configuration file provided by "Clang", but CMake did not find one. Could not find a package configuration file provided by "Clang" with any of the following names: ClangConfig.cmake clang-config.cmake Add the installation prefix of "Clang" to CMAKE_PREFIX_PATH or set "Clang_DIR" to a directory containing one of the above files. If "Clang" provides a separate development package or SDK, be sure it has been installed. ``` Remove llvm, llvm-libs since llvm-devel already pulls them in.
-
Brendan Gregg authored
fixed some small errors
-
Brendan Gregg authored
add fedora installation instructions to readme
-
Paweł Krupa authored
-
0xflotus authored
-
- 08 Oct, 2018 6 commits
-
-
Brendan Gregg authored
update tutorial with kprobe struct args
-
Brendan Gregg authored
-
Gaspar authored
fixes: https://github.com/iovisor/bpftrace/issues/8
-
Brendan Gregg authored
Update README/INSTALL
-
Alastair Robertson authored
-
Alastair Robertson authored
-
- 07 Oct, 2018 9 commits
-
-
Brendan Gregg authored
filename typo
-
Brendan Gregg authored
-
Brendan Gregg authored
Tools
-
Brendan Gregg authored
-
Brendan Gregg authored
-
Brendan Gregg authored
-
Brendan Gregg authored
-
Brendan Gregg authored
-
Alastair Robertson authored
To get full arguments to pass into Clang for reading kernel headers
-
- 04 Oct, 2018 1 commit
-
-
Brendan Gregg authored
-
- 01 Oct, 2018 3 commits
-
-
Brendan Gregg authored
cmake: rename gtest external project target
-
Brenden Blanco authored
This avoids a conflict in some environments (Arch Linux) Fixes: #135 Signed-off-by: Brenden Blanco <bblanco@gmail.com>
-
Brendan Gregg authored
update more tools to use args
-
- 30 Sep, 2018 4 commits
-
-
Brendan Gregg authored
-
Brendan Gregg authored
Tracepoint adjust integer types
-
Alastair Robertson authored
-
Alastair Robertson authored
-
- 27 Sep, 2018 9 commits
-
-
Brendan Gregg authored
promote scalar printf args to 64-bits
-
Alastair Robertson authored
freeze googletest version
-
Matheus Marchini authored
We have googletest as a dependency for our tests. This dependency is defined by cmake and fetched when we run make, but we were always fetching master, which means if there is a breaking change upstream our build will break without notice (which happened recently). To avoid this, we freeze the googletest version to the last stable, and once there's a new googletest release we can upgrade it here (making changes to our code if necessary). Fixes: https://github.com/iovisor/bpftrace/issues/122
-
Matheus Marchini authored
Due to BPF stack alignment restrictions, LLVM might change the size used to stored printf arguments in the stack, resulting in alignment issues when formatting and outputting those arguments. To avoid this issue, we promote every non-array argument to 64-bits, assuring the size used to store the argument is the same used to dereference it later when calling printf. Fixes: https://github.com/iovisor/bpftrace/issues/47
-
Brendan Gregg authored
add make install target
-
Brendan Gregg authored
enforce infinite rlimit to avoid problems when allocating maps
-
Brendan Gregg authored
update tutorial with tracepoint args
-
Matheus Marchini authored
Destination can be set through the CMAKE_INSTALL_PREFIX variable when running cmake (for example, `-DCMAKE_INSTALL_PREFIX=/usr/local`). Files are installed as described below: - `build/src/bpftrace` -> `${CMAKE_INSTALL_PREFIX}/sbin` - `tools/*` -> `${CMAKE_INSTALL_PREFIX}/share/bpftrace/tools` - `man/*` -> `${CMAKE_INSTALL_PREFIX}/man`
-
Matheus Marchini authored
Fixes: https://github.com/iovisor/bpftrace/issues/16
-