Hello again @gve,
You might be affected by the same issue that was reported in this thread: SonarQube - C++ - Ubuntu - build-wrapper LD_PRELOAD Error - #7 by choosyg
To check if this is the case, you can run the command:
strace -f -E LD_DEBUG=all ./build-wrapper-linux-x86/build-wrapper-linux-x86-64 --out-dir bw-output /bin/echo test >stdout.txt 2>stderr.txt
And search if the resulting output contains libinterceptor-haswell.so
. If so, you are in the same situation, and you can work around it by using the same way that was proposed there:
If not, we don’t yet know what happens, and we might be interested in getting the files generated by this strace
command to look at them more deeply.
Hope this helps…