I have a follow up question on
but it was already closed.
I want to analyze C++ source-code that has multiple variants. Meaning parts of the code is flagged with #ifdef.
With the provided solution in above mentioned question, I am able to create a build-script, build all the variants inside the script, wrapped with the build-wrapper and then start the analysis.
Now I want to build each of those variants inside a Docker container, using docker build followed by docker run.
When invoking docker commands inside the build-script, the build inside Docker is ignored - which is understandable.
Is there any solution for this?
Something like combining the output of two build-wrappe’d builds and then scan them together.
Thanks!