The g++ compiler needs to include the header for memcpy and the header for printf.
- in
ckwargs.cpp the function memcpy is used, this needs for g++ the header <cstring>.
- in
SomeFunction.cpp the function printf needs the inclusion of <cstdio>
I finally got this fixed and could compile the code on Linux with g++ 12.
The g++ compiler needs to include the header for
memcpyand the header forprintf.ckwargs.cppthe functionmemcpyis used, this needs for g++ the header<cstring>.SomeFunction.cppthe functionprintfneeds the inclusion of<cstdio>I finally got this fixed and could compile the code on Linux with g++ 12.