Robert Zeh
2009-Jan-22 02:46 UTC
[LLVMdev] Patch to get llvm compiling with the Intel 11.0.066 compiler
I've been trying to get llvm to compile under windows with the Intel C+ + 11.0.066 compiler without killing the compiler. I filed a bug report with Intel, and Intel says that their compiler has a problem with RecTy and Init being declared with "class" in utils \TableGen\TGParser.h but defined with "struct" in utils\TableGen \Record.h. The attached patch changes TGParser.h to use struct. -------------- next part -------------- A non-text attachment was scrubbed... Name: intel-patch.diff Type: application/octet-stream Size: 386 bytes Desc: not available URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20090121/f7cdba39/attachment.obj> -------------- next part -------------- Robert Zeh
Chris Lattner
2009-Jan-22 05:10 UTC
[LLVMdev] Patch to get llvm compiling with the Intel 11.0.066 compiler
On Jan 21, 2009, at 6:46 PM, Robert Zeh wrote:> I've been trying to get llvm to compile under windows with the Intel > C++ 11.0.066 compiler without killing the compiler. > > I filed a bug report with Intel, and Intel says that their compiler > has a problem with RecTy and Init being declared with "class" in > utils\TableGen\TGParser.h but defined with "struct" in utils\TableGen > \Record.h. > > The attached patch changes TGParser.h to use struct.Applied, thanks! http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20090119/072516.html -Chris