mirror of
https://github.com/netdata/libbpf.git
synced 2026-03-26 03:09:07 +08:00
Force libc6 dependency version. Drop explicit libelf-dev install command, as it should be pre-installed by Travis CI already, according to .travis.yaml. Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
24 lines
561 B
Bash
Executable File
24 lines
561 B
Bash
Executable File
#!/bin/bash
|
|
set -eux
|
|
|
|
RELEASE="focal"
|
|
|
|
apt-get update
|
|
apt-get install -y pkg-config
|
|
|
|
source "$(dirname $0)/travis_wait.bash"
|
|
|
|
cd $REPO_ROOT
|
|
|
|
CFLAGS="-g -O2 -Werror -Wall -fsanitize=address,undefined -Wno-stringop-truncation"
|
|
mkdir build install
|
|
cc --version
|
|
make -j$((4*$(nproc))) CFLAGS="${CFLAGS}" -C ./src -B OBJDIR=../build
|
|
ldd build/libbpf.so
|
|
if ! ldd build/libbpf.so | grep -q libelf; then
|
|
echo "FAIL: No reference to libelf.so in libbpf.so!"
|
|
exit 1
|
|
fi
|
|
make -j$((4*$(nproc))) -C src OBJDIR=../build DESTDIR=../install install
|
|
rm -rf build install
|