Search Criteria
Package Details: bpftune-git r421.bfec666-2
Package Actions
Git Clone URL: | https://aur.archlinux.org/bpftune-git.git (read-only, click to copy) |
---|---|
Package Base: | bpftune-git |
Description: | BPF/tracing tools for auto-tuning Linux |
Upstream URL: | https://github.com/oracle-samples/bpftune |
Licenses: | GPLv2 WITH Linux-syscall-note |
Conflicts: | bpftune |
Provides: | bpftune |
Submitter: | KriK |
Maintainer: | KriK |
Last Packager: | KriK |
Votes: | 3 |
Popularity: | 1.20 |
First Submitted: | 2023-07-01 08:11 (UTC) |
Last Updated: | 2023-07-03 10:28 (UTC) |
Dependencies (9)
- libbpf (libbpf-gitAUR)
- libcap
- libnl (libnl-gitAUR)
- bpf (make)
- clang (llvm-rocm-gitAUR, llvm-gitAUR, clang-minimal-gitAUR) (make)
- git (git-gitAUR, git-glAUR) (make)
- llvm (llvm-rocm-gitAUR, llvm-gitAUR, llvm-minimal-gitAUR) (make)
- llvm-libs (llvm-libs-rocm-gitAUR, llvm-libs-gitAUR) (make)
- python-docutils (make)
Latest Comments
ContronThePanda commented on 2024-09-23 20:55 (UTC)
Built and installed successfully with the following changes:
ContronThePanda commented on 2024-09-23 20:41 (UTC)
The current build issue seems to be caused by the fact that the PKGBUILD file uses a
sed
command to replace occurrences of/lib64
with/lib
, but the current source code uses the string"lib64"
without the leading slash. The current README includes an officially supported way to make this change instead (source):The current PKGBUILD also does something similar to change
sbin
tobin
; it doesn't look like there's an officially supported way to do that at the moment, but that could present a similar issue in the future.StrontiumK9 commented on 2024-09-17 06:31 (UTC) (edited on 2024-09-17 06:31 (UTC) by StrontiumK9)
Fails to install with:
ress commented on 2023-09-25 00:21 (UTC)
This repository has been moved from https://github.com/oracle-samples to https://github.com/oracle.
glitsj16 commented on 2023-07-25 22:53 (UTC) (edited on 2023-07-25 22:53 (UTC) by glitsj16)
The dynamic linker searches in /usr/lib by default. No need for installing libbpftune.conf to /etc/ld.so.conf.d:
[ -d "${pkgdir}/etc" ] && rm -r "$pkgdir"/etc
Secondly, the package() function currently puts two exact copies into /usr/lib. Only the versioned libbpftune .so should go in there. The other one needs to be a symlink to it:
# make libbpftune.so a symlink to libbpftune.so.0.1.3
[ -f "${pkgdir}/usr/lib/libbpftune.so" ] && rm "${pkgdir}/usr/lib/libbpftune.so"
ln -fs /usr/lib/libbpftune.so.0.1.3 "$pkgdir"/usr/lib/libbpftune.so
HTH
glitsj16 commented on 2023-07-08 16:38 (UTC) (edited on 2023-07-08 16:40 (UTC) by glitsj16)
Thanks for offering this package in the AUR. Some remarks:
makedepends
;ptr1337 commented on 2023-07-07 17:01 (UTC)
https://github.com/CachyOS/CachyOS-PKGBUILDS/blob/master/bpftune-git/PKGBUILD
This one is (currently) working. :)
pedrogabriel commented on 2023-07-06 21:50 (UTC)
This don't work for me.
KriK commented on 2023-07-03 10:30 (UTC)
@ptr1337 please, try again. I got it fixed
ptr1337 commented on 2023-07-02 15:20 (UTC)
Package is not compiling, but when compiling from git with make directly it works. Log: