Hi all, Any news on the cygwin front? What needs to be done? Can I help? Oleg.
What news were you looking for? :) We should build correctly on cygwin. I'm currently in the process of setting up a nightly tester for it. Reid. On Mon, 2004-12-20 at 13:24, Oleg Smolsky wrote:> Hi all, > > Any news on the cygwin front? What needs to be done? Can I help? > > Oleg. > > _______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > http://mail.cs.uiuc.edu/mailman/listinfo/llvmdev-------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20041220/2647d534/attachment.sig>
On Tue, Dec 21, 2004 at 10:24:29AM +1300, Oleg Smolsky wrote:> Any news on the cygwin front? What needs to be done? Can I help?At some point, LLVM built and ran on Cygwin, however, the only user at the time (Chris) no longer uses Cygwin, so it may or may not currently build on Cygwin. Please try it out, if it doesn't work, please tell us what's wrong, or, better yet, submit a patch. :) -- Misha Brukman :: http://misha.brukman.net :: http://llvm.cs.uiuc.edu
I can reproduce the problem with just two lines: struct X { int a[2]; }; int i = (int) &( ((struct X *)0) -> a[0]); This compiles with gcc and fails with llvmgcc. Adam, could you add this to your bug entry?
Misha, I should have some results by tomorrow. Hopefully by week's end we can add a cygwin nightly tester to the test results page. Reid. On Mon, 2004-12-20 at 13:58, Misha Brukman wrote:> On Tue, Dec 21, 2004 at 10:24:29AM +1300, Oleg Smolsky wrote: > > Any news on the cygwin front? What needs to be done? Can I help? > > At some point, LLVM built and ran on Cygwin, however, the only user at > the time (Chris) no longer uses Cygwin, so it may or may not currently > build on Cygwin. > > Please try it out, if it doesn't work, please tell us what's wrong, or, > better yet, submit a patch. :)-------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20041220/f13a7654/attachment.sig>
Hi Jeff Cohen,> I can reproduce the problem with just two lines: > > struct X { int a[2]; }; > int i = (int) &( ((struct X *)0) -> a[0]); > > This compiles with gcc and fails with llvmgcc. Adam, could you add > this to your bug entry?Many thanks Jeff! It's added: <http://llvm.cs.uiuc.edu/bugs/show_bug.cgi?id=487#c2> Regards, Adam