Re: Invalid relocation. Offset 0x7ffb9097714 at address 0x100402ed8 doesn't fit into 32 bits

2018-10-13 Thread Donald Krieger via cygwin
I see the same error on my version of cygwin.$ uname -aCYGWIN_NT-10.0 DESKTOP-S92525R 2.10.0(0.325/5/3) 2018-02-02 15:16 x86_64 Cygwin I wonder if this is a 64-bit application trying to run in a 32-bit address space? $ file /usr/bin/outguess.exe/usr/bin/outguess.exe: PE32+ executable (console)

Re: stdbuf does not work

2018-08-19 Thread Donald Krieger via cygwin
Thank you again, Eliot, for this direction.I haven't had time to get everything working but winpty does appear to work.Note that the undocumented switch,   -Xallow-non-tty must be included to use pipes.This now works, i.e. the text output from xgraph shows up immediately.     winpty  -Xallow-non-

Re: stdbuf does not work

2018-08-18 Thread Donald Krieger via cygwin
hanks again and for any further thoughts. Best - Don From: Eliot Moss To: cygwin@cygwin.com Sent: Saturday, August 18, 2018 9:14 AM Subject: Re: stdbuf does not work On 8/18/2018 8:36 AM, Donald Krieger via cygwin wrote: > Dear list, > I require line buffered output from progr

stdbuf does not work

2018-08-18 Thread Donald Krieger via cygwin
Dear list, I require line buffered output from program1 and line buffered input to program2.The following works under Linux but not under Cygwin.   stdbuf -oL -eL program 1 |& program2 I've searched the archive without success.I have tried -o0 -e0 -i0 and have also tried   stdbuf -oL -eL progra