<meta http-equiv="Content-Type" content="text/html; charset=GB18030"><div>hi,</div><div>I used clang(v-8.0) scan-build to build a real OC project, which contains c/cpp/oc code files. Command is "scan-build xcodebuild -workspace .... " , and an error occurs when build cpp files. Here is the error message:</div><div><br></div><div>/**a.cpp**/</div><div>struct person{</div><div>    char name;</div><div>    char tel;</div><div>    .....</div><div>}</div><div>....</div><div>....</div><div>person p ={..}</div><div>p.name = ...</div><div>p.tel = ...</div><div>/**a.cpp**/</div><div><br></div><div>  <b>error: <span style=" background-color: rgb(51, 48, 48); color: rgb(255, 255, 255); ; ; ; ; ">no member named 'name' in 'person'</span></b></div><div><b>  error: <span style=" background-color: rgb(51, 48, 48); color: rgb(255, 255, 255); ; ; ; ; ">no member named 'tel' in 'person'</span></b></div><div><b>  ......</b></div><div><b>  </b><span style=" background-color: rgb(51, 48, 48); color: rgb(255, 255, 255); ; ; ; ; "></span><span style=" background-color: rgb(30, 30, 30); color: rgb(255, 255, 255); ; ; ; ; ">fatal error: too many errors emitted, stopping now [-ferror-limit=]</span></div><div><span style=" color: rgb(255, 255, 255); ; ; ; ; ; ">  Command AnalyzeShallow failed with a nonzero exit code</span></div><div><br></div><div>and build failed.  I tried to use -ferror-limit=0 to no limit errors, but it still build failed with many such errors.</div><div>What's the problem? And how to solve it?</div><div>Thanks.</div><div><span style=" background-color: rgb(51, 48, 48); color: rgb(255, 255, 255); ; ; ; ; "><br></span></div><div><span style=" background-color: rgb(51, 48, 48); color: rgb(255, 255, 255); ; ; ; ; "><br></span></div>