I have hierarchy of files and folders containing C++ codes. They often include each other like:
#include "../../Foder1/Lib4/file12.hpp"
When I compile the code, in case of error, I see a message like:
Foder2/Lib7/../../Foder1/Lib4/file12.hpp:71:4: error <something>
While I prefer to see ..
standing for parent directory is canceled out in the gcc
error message:
Foder1/Lib4/file12.hpp:71:4: error <something>
Any option for calling gcc
?