Hi, after I enter the command ` edb graph dist/tracee.bpf.core.o tracepoint__raw_syscalls__sys_enter -f dot -o res.dot`. I got the following error: ``` Error: load collection: file dist/tracee.bpf.core.o: section "kprobe/security_file_open": string is not stack allocated: not supported ``` [tracee.bpf.core.zip](https://github.com/dylandreimerink/edb/files/9092967/tracee.bpf.core.zip) Any help? Edit: I am trying to create a control flow graph for of the [tracepoint__raw_syscalls__sys_enter program](https://github.com/aquasecurity/tracee/blob/260570df25844a7e05a1440d448082cec2447823/pkg/ebpf/c/tracee.bpf.c#L2526) of the [tracee](https://github.com/aquasecurity/tracee) project. Steps to reproduce are: 1. Clone tracee: `git clone https://github.com/aquasecurity/tracee.git` 2. Build tracee `cd tracee && make tracee-ebpf` 3. Attempt to render CFG: `edb graph dist/tracee.bpf.core.o tracepoint__raw_syscalls__sys_enter -f dot -o res.dot`