<div dir="ltr"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
  In file included from main.cpp:1:<br>
  In file included from /usr/local/lib/clang/11.0.0/include/stdint.h:52:<br>
  /usr/include/stdint.h:26:10: fatal error: 'bits/libc-header-start.h' file not found<br>
  #include <bits/libc-header-start.h><br>
           ^~~~~~~~~~~~~~~~~~~~~~~~~~<br>
  1 error generated.<br></blockquote><div> </div><div>I had the same issue initially. The problem here is that it tries to include /usr/include/stdint.h, which it should not because that's the header for the host system not the AVR. To work around this you can use the -nostdlibinc flag.</div><div><br></div><div>See: <a href="https://bugs.llvm.org/show_bug.cgi?id=39210">https://bugs.llvm.org/show_bug.cgi?id=39210</a></div></div></div>