Issue
I try to cross-compile for STM32 arm-none-eabi using zephyrproject.org. Zephyr adds -nostdinc
flag to every C/C++ file. I cannot find how to override this without fixing build system sources.
Need option like -stdinc
(unrecognized). Is there any?
Solution
You can find out what the default include directories are, and add them back with the -I
option.
Answered By - followed Monica to Codidact