Re: stdout and stderr
- Posted by jimcbrown (admin) Sep 04, 2008
- 931 views
rodoval said...
Hello all!
Apparently stdout and stderr are not correctly managed by Euphoria (3.1.1 from RDS) in my Linux machine:
This is due to hysterical rasins.
Basically, stderr is managed strangely because we used to use ncurses for output. So we'd use the same mechanism to output both stderr and stdout. Nowadays, that mechanism has been changed to always output data through stdout. So when stderr is not being explicitly redirected/piped, eu outputs data to its stdout instead. (This check is done on line 760 of be_w.c) This made sense when eu used ncurses.