GNU bug report logs -
#66852
Pipes not working in MSYS2
Previous Next
To reply to this bug, email your comments to 66852 AT debbugs.gnu.org.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
bug-guile <at> gnu.org
:
bug#66852
; Package
guile
.
(Tue, 31 Oct 2023 18:48:02 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Francesco Corte <francesco.corte9001 <at> gmail.com>
:
New bug report received and forwarded. Copy sent to
bug-guile <at> gnu.org
.
(Tue, 31 Oct 2023 18:48:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
Hello
Pipes are not working in Windows (MSYS2)
here is an example program
(use-modules (ice-9 popen)
(ice-9 rdelim))
(let ((pipe (open-pipe* OPEN_READ "uname")))
(display (read-line pipe))
(close-pipe pipe))
and its output
λ guile -s main.scm
#<eof>
of course `uname` works in the shell (bash
λ uname
MSYS_NT-10.0-19045
the *features* variable signals that pipes are in theory available
scheme@(guile-user)> *features*
$1 = (readline record defmacro debug-extensions values array-for-each
array sort socket net-db regex popen fork EIDs posix readlink-port
chdir-port inexact complex random i/o-extensions i18n current-time delay
threads char-ready? system)
here is the version of guile I'm using
λ guile --version
guile (GNU Guile) 3.0.9
Copyright (C) 2023 Free Software Foundation, Inc.
I tried the other `open-pipe` function, to the same result.
Interestingly, `(system "uname")` works as expected.
both `popen` and `pclose` are available as stdio.h functions, I made
sure by writing essentially the same program as above in C.
Thanks!
This bug report was last modified 1 year and 23 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.