You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
loxilb-ebpf program include <linux/if_arp.h> result in missing gnu/stubs-32.h error, workaround this by copy Ubuntu 22.04 host gnu/stubs-32.h to BPFire chroot build directory as:
cp /usr/include/x86_64-linux-gnu/gnu/stubs-32.h build/usr/include/gnu/
root@r210:/home/vincent/go/src/github.com/vincentmli/BPFire# ls -l build/usr/include/gnu/stubs-32.h
-rw-r--r-- 1 root root 449 May 11 22:07 build/usr/include/gnu/stubs-32.h
The text was updated successfully, but these errors were encountered:
vincentmli
changed the title
loxilb build error missing gnu/stubs-32.h
loxilb build error missing gnu/stubs-32.h workaround
May 12, 2024
build loxilb in BPFire requires golang 1.22.0,
but then had issue [0], run go mod vendor to
prepare the loxilb to download golang dependencies
package beforehand to avoid issue [0]
loxilb-ebpf build also requires gnu/stubs-32.h
use [1] as workaround
[0]: #18
[1]: #16
Signed-off-by: Vincent Li <[email protected]>
loxilb-ebpf program include
<linux/if_arp.h>
result in missing gnu/stubs-32.h error, workaround this by copy Ubuntu 22.04 host gnu/stubs-32.h to BPFire chroot build directory as:The text was updated successfully, but these errors were encountered: