Tim Rühsen

Results 203 comments of Tim Rühsen

Just fya, from the [README](https://github.com/elastic/otel-profiling-agent/blob/main/README.md): ``` Please be aware that we currently won't merge 3rd party PRs because this repository is temporary. We are waiting for the decision of the...

Thanks, good finding ! I added a new option in https://gitlab.com/gnuwget/wget2/-/merge_requests/518 . Will likely merge tomorrow.

> You could however track the success of what you sent using the OnSuccess callback on the BulkIndexerItem and re-queue the ones that fails to acknowledge when you encounter an...

Hi @ani12321 "The int, uint, and uintptr types are usually 32 bits wide on 32-bit systems and 64 bits wide on 64-bit systems." (See https://go.dev/tour/basics/11). So maybe this is not...

When you built `otel-profiling-agent`, what was number of instructions reported for the eBPF programs? Output from my machine ``` Instruction counts for tracer.ebpf.x86: .text has 0 instructions perf_event/unwind_dotnet has 3597...

On a different machine, also latest Debian unstable and also a dev machine, I tried with a fresh clone of curl-fuzzer in /tmp. ``` ... buildconf: OK + /tmp/curl-fuzzer/configure ......

Just a guess... my 'make' is an alias to 'make -j$(nproc)'. Is there a problem with parallel builds ? Will check later, have to finish some work now :-|

In curl-fuzzer/ a `make clean && make -j1` yields the same result. Attaching the output from `make -j1 -d` after a `make clean` [make.log](https://github.com/curl/curl-fuzzer/files/2410437/make.log)

For me it looks like a missing dependency. I can see `FUZZLIBS = libstandaloneengine.a` but FUZZLIBS isn't used in `Makefile` anywhere as dependency.

This fixes it for me - thanks for for your time. [0001-Add-libstandaloneengine.a-as-dependency.txt](https://github.com/curl/curl-fuzzer/files/2410487/0001-Add-libstandaloneengine.a-as-dependency.txt)