<html><head><meta http-equiv="Content-Type" content="text/html charset=utf-8"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class="">Hi Tim<br class=""><div class="">
<div style="color: rgb(0, 0, 0); letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class=""><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class=""><div style="color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px;"><br class=""></div><div style="color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px;">I created an Xcode project with CMAKE, which should have the entire lot of files. Selecting the ‘install’ scheme Xcode compiles everything including all available targets for clang and llc, which then I can fully debug. So the Xcode project definitely has all the cpp files in it. </div><div style="color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px;"><br class=""></div><div style="color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px;">However, I now have found that for some reason the .h files in the lib/Basic/Targets directory were not included as part of the Xcode project. This is kind of weird, as this is the only case that I found of .h files not being added to the project. I assume this is a bug on one of the cmake install files. The entire thing compiles anyway because the compiler finds the .h files as they are included in the .cpp source.</div><div style="color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px;"><br class=""></div><div style="color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px;">I have been performing all searches in the convenience of the xCode environment, and since these particular files were missing from the project they didn’t appear in any searches. I suppose this can be reported as a bug of the Cmake configuration files for xCode.</div><div style="color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px;"><br class=""></div><div style="color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px;">John<br class=""><br class=""></div></div></div>
</div>
<br class=""><div><blockquote type="cite" class=""><div class="">On 5 May 2019, at 22:01, Tim Northover <<a href="mailto:t.p.northover@gmail.com" class="">t.p.northover@gmail.com</a>> wrote:</div><br class="Apple-interchange-newline"><div class=""><div class="">On Sun, 5 May 2019 at 19:41, Joan Lluch <<a href="mailto:joan.lluch@icloud.com" class="">joan.lluch@icloud.com</a>> wrote:<br class=""><blockquote type="cite" class="">“LargeArrayMinWidth” is only on the following files:<br class=""><br class="">TargetInfo.cpp<br class="">TargetInfo.h<br class=""></blockquote><br class="">OK, so I've downloaded the official Clang released source<br class="">(<a href="https://releases.llvm.org/7.0.0/cfe-7.0.0.src.tar.xz" class="">https://releases.llvm.org/7.0.0/cfe-7.0.0.src.tar.xz</a>), and:<br class=""><br class="">$ tar xvf Downloads/cfe-7.0.0.src.tar.xz<br class="">[...]<br class="">$ cd cfe-7.0.0.src/<br class="">$ grep -r LargeArrayMinWidth .<br class="">./include/clang/Basic/TargetInfo.h:  unsigned char LargeArrayMinWidth,<br class="">LargeArrayAlign;<br class="">./include/clang/Basic/TargetInfo.h:  // getLargeArrayMinWidth/Align -<br class="">Return the minimum array size that is<br class="">./include/clang/Basic/TargetInfo.h:  unsigned getLargeArrayMinWidth()<br class="">const { return LargeArrayMinWidth; }<br class="">./lib/Basic/TargetInfo.cpp:  LargeArrayMinWidth = 0;<br class="">./lib/Basic/Targets/Hexagon.h:    LargeArrayMinWidth = 64;<br class="">./lib/Basic/Targets/NVPTX.cpp:  // - LargeArrayMinWidth,<br class="">LargeArrayAlign: Not visible across the<br class="">./lib/Basic/Targets/X86.h:    LargeArrayMinWidth = 128;<br class="">./lib/Basic/Targets/WebAssembly.h:    LargeArrayMinWidth = 128;<br class="">./lib/AST/ASTContext.cpp:        unsigned MinWidth =<br class="">Target->getLargeArrayMinWidth();<br class=""><br class="">I'm afraid I don't know what actually is happening here, but I think<br class="">the best explanation has to be that you're not actually looking at<br class="">Clang 7.0 source. That would definitely be my primary line of<br class="">investigation.<br class=""><br class="">Cheers.<br class=""><br class="">Tim.<br class=""></div></div></blockquote></div><br class=""></body></html>