search for: 077380

Displaying 4 results from an estimated 4 matches for "077380".

2009 May 15
0
[LLVMdev] [Cygwin] bug on SVN
...ID, TIOCGWINSZ, &ws) == 0) > Columns = ws.ws_col; > #endif > > I could not see any changes in Process.cpp's SVN that could have > caused this. > Anyone got a clue ? > It's my change, here: http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20090511/077380.html Is struct winsize declared anywhere in the Cygwin headers? - Doug -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20090515/6ca08589/attachment.html>
2009 May 15
3
[LLVMdev] [Cygwin] bug on SVN
I am getting a bug building Cygwin on latest SVN :- llvm[1]: Compiling Process.cpp for Debug build In file included from /home/ang/git/workbench/lib/System/Process.cpp:29: /home/ang/git/workbench/lib/System/Unix/Process.inc: In function 'unsigned int g etColumns(int)': /home/ang/git/workbench/lib/System/Unix/Process.inc:209: error: aggregate 'winsi ze ws' has incomplete type and
2009 May 15
5
[LLVMdev] [Cygwin] bug on SVN
...FileID, TIOCGWINSZ, &ws) == 0) Columns = ws.ws_col; #endif I could not see any changes in Process.cpp's SVN that could have caused this. Anyone got a clue ? >It's my change, here: >http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20090511/077380.html >Is struct winsize declared anywhere in the Cygwin headers? Doug, It is declared in <sys/termios.h> Aaron -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20090515/4bf5a7c6/attachment....
2009 May 18
0
[LLVMdev] [Cygwin] bug on SVN
...col; >> #endif >> >> I could not see any changes in Process.cpp's SVN that could have >> caused this. >> Anyone got a clue ? >> > > >It's my change, here: > > >http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of- > Mon-20090511/077380.html > > >Is struct winsize declared anywhere in the Cygwin headers? > > Doug, > > It is declared in <sys/termios.h> > Okay, we're now checking for <termios.h> in addition to <sys/ioctl.h>. Hopefully, things are working again on Cygwin with r72018 (bu...