I’m trying to build for ARM and was surprised to get warnings from the
stdint.h. Is this expected behavior?
Here’s what my c file looks like:
foo.c:
#include
How I’m invoking the compiler:
/usr/bin/clang --target=arm-none-eabi -I/usr/lib64/clang/7.0.1/include
-nostdinc -c foo.c
I’m surpri
Hello Kumar, (reposting as I wasn't subscribed to cfe-users).
Yes I think that these warnings are expected when the clang stdint.h
is included via -I. Normally it is included as a system header which
suppresses the warnings (-isystem). From the comment in
https://github.com/llvm-mirror/clang/blob
Ah the bit about -isystem and suppressing warnings was good to know. For a few
cases in our build system we didn’t have -isystem for
/usr/lib64/clang/7.0.1/include.
- k
> On Mar 14, 2019, at 11:23 AM, Peter Smith wrote:
>
> Hello Kumar, (reposting as I wasn't subscribed to cfe-users).
>
> Y