unofficial mirror of bug-guile@gnu.org 
 help / color / mirror / Atom feed
* bug#66852: Pipes not working in MSYS2
@ 2023-10-31 17:43 Francesco Corte
  0 siblings, 0 replies; only message in thread
From: Francesco Corte @ 2023-10-31 17:43 UTC (permalink / raw)
  To: 66852

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!







^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2023-10-31 17:43 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-10-31 17:43 bug#66852: Pipes not working in MSYS2 Francesco Corte

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).