Claus Nagel wrote:
Hi,
an onwards with this slowly evolving error report on MS-platforms. Ron
gave a hint, but STDERR on Windows is just q{2>}, so running
PS D:\Src\rakudo> gdb .\parrot_install\bin\parrot.exe 2> error.txt
produces at least following error:
gdb.exe : warning: Query the registry to get manually
configured process list.
At line:1 char:4
+ gdb <<<< .\parrot_install\bin\parrot.exe 2> error.txt
+ CategoryInfo : NotSpecified: (warning...d
process list.:String) [], RemoteException
+ FullyQualifiedErrorId : NativeCommandError
Anyone seen such thing before?
(Sorry about the utf...)
Greetings - clausi -
The "PS" at the beginning of your "PS D:\Src\rakudo>" command prompt
indicates that you are running under windows PowerShell and not a cmd
prompt which may also explain the error messages.
You are right about not using "2>&1" redirection on windows, and I am
sorry about missing that, but a cmd of "gdb
.\parrot_install\bin\parrot.exe 2>src\gen\core2.pir" yielded the same
result of parrot output going to the screen and not a file so I am still
wondering about a better answeer for redirecting the output.
Ron