Devidas Jadhav
Devidas Jadhav
@amir9339 Do check version installed package ``` sudo apt list bcc-tools ``` if its not latest try using iovisor repo while installing don't forget to uninstall previously installed bcc. ```...
This is correct but its caused by linux kernel [450b7879e34517c3ebc3a35a53806fe40e60fac2](https://github.com/torvalds/linux/commit/450b7879e34517c3ebc3a35a53806fe40e60fac2) and its introduced in 5.17 onwards. Kernel Devs don't guaranty tracing symbols similar to linux ABI. this is not issue...
@mschilli87 I can help you debug this issue. I need your help in two ways. 1. provide server which I can clone and reproduce issue. 2. try adding logs to...
I tried using sshfs to clone github repo. but no success. ``` dev@debian:~/a/sshfs-3.7.0/builddir$ ./sshfs [email protected]:devidasjadhav/blog.git ./mnt -d -o no_readahead SSHFS version 3.7.0 executing subsystem request failed on channel 0 remote...
Added and verified local-release.sh. ``` $ ARCHS='amd64' ./local-release.sh + OS=linux + [ amd64 = arm64 ] + LIBPCAP_ARCH=x86_64-unknown-linux-gnu + CC=clang + make clean rm -f pwru rm -f kprobepwru_bpf* rm...
clang build for arm64 failing when clang replaced by gcc. ``` CC=clang GOARCH=arm64 CGO_ENABLED=1 go build \ -ldflags "-w -s \ -X 'github.com/cilium/pwru/internal/pwru.Version=1e10c19'" # runtime/cgo gcc_arm64.S:30:19: error: expected ']' in...
Found root cause of issue. - clang is not cross compiler. - when clang compiled libpcap it generated object files for x86_64. - which in turn caused compile error also...
just realized https://github.com/llvm/llvm-project/releases/download/llvmorg-17.0.4/clang+llvm-17.0.4-aarch64-linux-gnu.tar.xz is not cross-compiler rather its clang for aarch64.
I am able to cross compile libpcap. Now only issue is cgo compilation. Which is exact same go files are building fine with cc=aarch64-unknown-linux-gnu But fails when cc=clang @brb any...
It was typo. its `CC=aarch64-linux-gnu-gcc`