Hello,
I am wondering if is somehow possible to specify some of the include directories to be passed with -isystem
parameter rather than -I
parameter.
The problem is compiling with -pedantic
and having all include directories (mine + Nordic nRF5 SDK) in the same field, that is VisualGDB Project Properties > Embedded Project > Include directories, consequently passed to the gcc with -I
. That triggers a lot of (~2000) warnings from Nordic SDK, which I want to ignore by passing those include directories with -isystem
.
Thank you