(1) I have a program, BOING.ml, that uses Unix.system to invoke another program, “foobar.ml” (compied/copied to “yadda…” (with varous sufixes).
(2) When yadda.ml is compiled to “yadda.exe”, it works fine.
(3) When yadda.ml is compiled to “yadda.opt.exe”, and invoked as “yadda.opt -verbose”, I get a weird error (perhaps from cmd.exe, I got no idear, since I ain’t no Windows dude):
unknown option -verbose
I have as close as possible to a clean repro, in this repo: GitHub - chetmurthy/ci-sandbox: CI Sandbox
commithash: 2c6a9bc5ef921f66df36b7a8eedd931d09342340
The example is in the directory “system” and can be reproduced by running the Github CI action in the repo, or running:
make -C system all
Salient output below (lines with “HERE” inserted to highlight error):
ls -la
total 2085
drwxrwx---+ 1 Administrators None 0 Mar 27 03:36 .
drwxrwx---+ 1 Administrators None 0 Mar 27 03:35 ..
-rwxr-x---+ 1 Administrators None 42 Mar 27 03:34 .gitignore
-rwxr-x---+ 1 runneradmin None 1100 Mar 27 03:36 BOING.cmi
-rwxr-x---+ 1 runneradmin None 1933 Mar 27 03:36 BOING.cmo
-rwxr-x---+ 1 runneradmin None 545419 Mar 27 03:36 BOING.exe
-rwxr-x---+ 1 Administrators None 616 Mar 27 03:34 BOING.ml
-rwxr-x---+ 1 Administrators None 568 Mar 27 03:34 Makefile
-rwxr-x---+ 1 runneradmin None 688 Mar 27 03:36 foobar.cmi
-rwxr-x---+ 1 runneradmin None 891 Mar 27 03:36 foobar.cmo
-rwxr-x---+ 1 runneradmin None 516422 Mar 27 03:36 foobar.exe
-rwxr-x---+ 1 Administrators None 68 Mar 27 03:34 foobar.ml
-rwxr-x---+ 1 runneradmin None 516422 Mar 27 03:36 yadda.exe
-rwxr-x---+ 1 runneradmin None 516422 Mar 27 03:36 yadda.opt.exe
./BOING yadda -verbose foo || echo yadda failed
LAUNCH: command "yadda ^"-verbose^" ^"foo^""
["yadda"; "-verbose"; "foo"]
./BOING yadda.exe -verbose foo || echo yadda.exe failed
LAUNCH: command "yadda.exe ^"-verbose^" ^"foo^""
["yadda.exe"; "-verbose"; "foo"]
./BOING yadda.opt -verbose foo || echo yadda.opt failed
LAUNCH: command "yadda.opt ^"-verbose^" ^"foo^""
------------------ HERE ---------------------
unknown option -verbose
------------------ HERE ---------------------
yadda.opt failed
./BOING yadda.opt.exe -verbose foo || echo yadda.opt.exe failed
LAUNCH: command "yadda.opt.exe ^"-verbose^" ^"foo^""
["yadda.opt.exe"; "-verbose"; "foo"]
Notice the extremely terse error-message.
I am neither a Windows programmer, admin, nor user. Literally have never had it on a machine I own. I’ve used Github’s CI somewhere between 100 and 1000 times, in order to narrow down this and a couple other Windows support bugs. So someone else will need to run with this, if they want it fixed.
For myself, I can attest that Perl’s equivalent, IPC::System::Simple::runx
has never displayed such problematic errors.
P.S. I did read the doc-comments, and saw nothing to make me think that this was expected behaviour.