I'm seeing the following build problem on Windows. I'm using cmake, but haven't verified "it" is the problem. Is anyone else seeing this problem? Any help would be appreciated. Thanks, snaroff -------------- next part -------------- A non-text attachment was scrubbed... Name: Picture 21.png Type: image/png Size: 24840 bytes Desc: not available URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20081205/d9f99439/attachment.png> -------------- next part --------------
steve naroff <snaroff at apple.com> writes:> I'm seeing the following build problem on Windows. I'm using cmake, > but haven't verified "it" is the problem. > > Is anyone else seeing this problem? > > Any help would be appreciated. Thanks,Those are the same errors reported by OvermindDL1 a few hours ago on this mailing list. I don't think CMake has something to do with them. Seems C++ issues. -- Oscar
Óscar Fuentes a écrit :> steve naroff <snaroff at apple.com> writes: > > >> I'm seeing the following build problem on Windows. I'm using cmake, >> but haven't verified "it" is the problem. >> >> Is anyone else seeing this problem? >> >> Any help would be appreciated. Thanks, >> > > Those are the same errors reported by OvermindDL1 a few hours ago on > this mailing list. > > I don't think CMake has something to do with them. Seems C++ issues. >Somone used the construct: for(Type1 B = ...;;) { Type2 B ; ... } and VS don't like it, (it ignore the second declaration of B). Anyway, I think it bad to use this as it make the code unreadable. Since the probleme was in tablegen, lot of things were inpacted. I will commit a fix shortly (when the full build finish) regards,