Linux Audio

Check our new training course

Embedded Linux training

Mar 31-Apr 8, 2025
Register
Loading...
v6.2
  1eBPF sample programs
  2====================
  3
  4This directory contains a test stubs, verifier test-suite and examples
  5for using eBPF. The examples use libbpf from tools/lib/bpf.
  6
 
 
 
 
 
 
  7Build dependencies
  8==================
  9
 10Compiling requires having installed:
 11 * clang >= version 3.4.0
 12 * llvm >= version 3.7.1
 13
 14Note that LLVM's tool 'llc' must support target 'bpf', list version
 15and supported targets with command: ``llc --version``
 
 
 
 16
 17Clean and configuration
 18-----------------------
 19
 20It can be needed to clean tools, samples or kernel before trying new arch or
 21after some changes (on demand)::
 22
 23 make -C tools clean
 24 make -C samples/bpf clean
 25 make clean
 26
 27Configure kernel, defconfig for instance::
 
 28
 29 make defconfig
 30
 31Kernel headers
 32--------------
 33
 34There are usually dependencies to header files of the current kernel.
 35To avoid installing devel kernel headers system wide, as a normal
 36user, simply call::
 37
 38 make headers_install
 39
 40This will create a local "usr/include" directory in the git/build top
 41level directory, that the make system will automatically pick up first.
 42
 43Compiling
 44=========
 45
 46For building the BPF samples, issue the below command from the kernel
 47top level directory::
 48
 49 make M=samples/bpf
 50
 51It is also possible to call make from this directory.  This will just
 52hide the invocation of make as above.
 53
 54Manually compiling LLVM with 'bpf' support
 55------------------------------------------
 56
 57Since version 3.7.0, LLVM adds a proper LLVM backend target for the
 58BPF bytecode architecture.
 59
 60By default llvm will build all non-experimental backends including bpf.
 61To generate a smaller llc binary one can use::
 62
 63 -DLLVM_TARGETS_TO_BUILD="BPF"
 64
 65We recommend that developers who want the fastest incremental builds
 66use the Ninja build system, you can find it in your system's package
 67manager, usually the package is ninja or ninja-build.
 68
 69Quick sniplet for manually compiling LLVM and clang
 70(build dependencies are ninja, cmake and gcc-c++)::
 71
 72 $ git clone https://github.com/llvm/llvm-project.git
 73 $ mkdir -p llvm-project/llvm/build
 74 $ cd llvm-project/llvm/build
 75 $ cmake .. -G "Ninja" -DLLVM_TARGETS_TO_BUILD="BPF;X86" \
 76            -DLLVM_ENABLE_PROJECTS="clang"    \
 77            -DCMAKE_BUILD_TYPE=Release        \
 78            -DLLVM_BUILD_RUNTIME=OFF
 79 $ ninja
 80
 81It is also possible to point make to the newly compiled 'llc' or
 82'clang' command via redefining LLC or CLANG on the make command line::
 83
 84 make M=samples/bpf LLC=~/git/llvm-project/llvm/build/bin/llc CLANG=~/git/llvm-project/llvm/build/bin/clang
 85
 86Cross compiling samples
 87-----------------------
 88In order to cross-compile, say for arm64 targets, export CROSS_COMPILE and ARCH
 89environment variables before calling make. But do this before clean,
 90configuration and header install steps described above. This will direct make to
 91build samples for the cross target::
 92
 93 export ARCH=arm64
 94 export CROSS_COMPILE="aarch64-linux-gnu-"
 95
 96Headers can be also installed on RFS of target board if need to keep them in
 97sync (not necessarily and it creates a local "usr/include" directory also)::
 98
 99 make INSTALL_HDR_PATH=~/some_sysroot/usr headers_install
100
101Pointing LLC and CLANG is not necessarily if it's installed on HOST and have
102in its targets appropriate arm64 arch (usually it has several arches).
103Build samples::
104
105 make M=samples/bpf
106
107Or build samples with SYSROOT if some header or library is absent in toolchain,
108say libelf, providing address to file system containing headers and libs,
109can be RFS of target board::
110
111 make M=samples/bpf SYSROOT=~/some_sysroot
v6.9.4
  1eBPF sample programs
  2====================
  3
  4This directory contains a test stubs, verifier test-suite and examples
  5for using eBPF. The examples use libbpf from tools/lib/bpf.
  6
  7Note that the XDP-specific samples have been removed from this directory and
  8moved to the xdp-tools repository: https://github.com/xdp-project/xdp-tools
  9See the commit messages removing each tool from this directory for how to
 10convert specific command invocations between the old samples and the utilities
 11in xdp-tools.
 12
 13Build dependencies
 14==================
 15
 16Compiling requires having installed:
 17 * clang
 18 * llvm
 19 * pahole
 20
 21Consult :ref:`Documentation/process/changes.rst <changes>` for the minimum
 22version numbers required and how to update them. Note that LLVM's tool
 23'llc' must support target 'bpf', list version and supported targets with
 24command: ``llc --version``
 25
 26Clean and configuration
 27-----------------------
 28
 29It can be needed to clean tools, samples or kernel before trying new arch or
 30after some changes (on demand)::
 31
 32 make -C tools clean
 33 make -C samples/bpf clean
 34 make clean
 35
 36Configure kernel, defconfig for instance
 37(see "tools/testing/selftests/bpf/config" for a reference config)::
 38
 39 make defconfig
 40
 41Kernel headers
 42--------------
 43
 44There are usually dependencies to header files of the current kernel.
 45To avoid installing devel kernel headers system wide, as a normal
 46user, simply call::
 47
 48 make headers_install
 49
 50This will create a local "usr/include" directory in the git/build top
 51level directory, that the make system will automatically pick up first.
 52
 53Compiling
 54=========
 55
 56For building the BPF samples, issue the below command from the kernel
 57top level directory::
 58
 59 make M=samples/bpf
 60
 61It is also possible to call make from this directory.  This will just
 62hide the invocation of make as above.
 63
 64Manually compiling LLVM with 'bpf' support
 65------------------------------------------
 66
 67Since version 3.7.0, LLVM adds a proper LLVM backend target for the
 68BPF bytecode architecture.
 69
 70By default llvm will build all non-experimental backends including bpf.
 71To generate a smaller llc binary one can use::
 72
 73 -DLLVM_TARGETS_TO_BUILD="BPF"
 74
 75We recommend that developers who want the fastest incremental builds
 76use the Ninja build system, you can find it in your system's package
 77manager, usually the package is ninja or ninja-build.
 78
 79Quick sniplet for manually compiling LLVM and clang
 80(build dependencies are ninja, cmake and gcc-c++)::
 81
 82 $ git clone https://github.com/llvm/llvm-project.git
 83 $ mkdir -p llvm-project/llvm/build
 84 $ cd llvm-project/llvm/build
 85 $ cmake .. -G "Ninja" -DLLVM_TARGETS_TO_BUILD="BPF;X86" \
 86            -DLLVM_ENABLE_PROJECTS="clang"    \
 87            -DCMAKE_BUILD_TYPE=Release        \
 88            -DLLVM_BUILD_RUNTIME=OFF
 89 $ ninja
 90
 91It is also possible to point make to the newly compiled 'llc' or
 92'clang' command via redefining LLC or CLANG on the make command line::
 93
 94 make M=samples/bpf LLC=~/git/llvm-project/llvm/build/bin/llc CLANG=~/git/llvm-project/llvm/build/bin/clang
 95
 96Cross compiling samples
 97-----------------------
 98In order to cross-compile, say for arm64 targets, export CROSS_COMPILE and ARCH
 99environment variables before calling make. But do this before clean,
100configuration and header install steps described above. This will direct make to
101build samples for the cross target::
102
103 export ARCH=arm64
104 export CROSS_COMPILE="aarch64-linux-gnu-"
105
106Headers can be also installed on RFS of target board if need to keep them in
107sync (not necessarily and it creates a local "usr/include" directory also)::
108
109 make INSTALL_HDR_PATH=~/some_sysroot/usr headers_install
110
111Pointing LLC and CLANG is not necessarily if it's installed on HOST and have
112in its targets appropriate arm64 arch (usually it has several arches).
113Build samples::
114
115 make M=samples/bpf
116
117Or build samples with SYSROOT if some header or library is absent in toolchain,
118say libelf, providing address to file system containing headers and libs,
119can be RFS of target board::
120
121 make M=samples/bpf SYSROOT=~/some_sysroot