We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e300638 commit 0e6fffdCopy full SHA for 0e6fffd
.pipelines/build/scripts/ipv6-hp-bpf.sh
@@ -92,13 +92,14 @@ if [[ -f /etc/debian_version ]];then
92
# Mariner
93
else
94
tdnf install -y llvm clang libbpf-devel nftables gcc binutils iproute glibc
95
- if [[ $GOARCH =~ amd64 ]]; then
+ if [[ $ARCH =~ amd64 ]]; then
96
ARCH=x86_64-linux-gnu
97
if [[ -f '/usr/lib/ld-linux-x86-64.so.2' ]]; then
98
cp /usr/lib/ld-linux-x86-64.so.2 "$OUT_DIR"/lib/
99
fi
100
- elif [[ $GOARCH =~ arm64 ]]; then
+ elif [[ $ARCH =~ arm64 ]]; then
101
ARCH=aarch64-linux-gnu
102
+ tdnf install -y glibc-devel.i386
103
if [[ -f '/usr/lib/ld-linux-aarch64.so.1' ]]; then
104
cp /usr/lib/ld-linux-aarch64.so.1 "$OUT_DIR"/lib/
105
0 commit comments