Replace --debugmsg with WINEDEBUG.
This commit is contained in:
parent
90baafee4e
commit
01064d524d
|
@ -45,7 +45,7 @@
|
||||||
<title>Fiddle with DLL configuration</title>
|
<title>Fiddle with DLL configuration</title>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
Run with --debugmsg +loaddll to figure out which DLLs are
|
Run with WINEDEBUG=+loaddll to figure out which DLLs are
|
||||||
being used, and whether they're being loaded as native or
|
being used, and whether they're being loaded as native or
|
||||||
built-in.
|
built-in.
|
||||||
Then make sure you have proper native DLL files in your
|
Then make sure you have proper native DLL files in your
|
||||||
|
@ -316,9 +316,9 @@
|
||||||
</listitem>
|
</listitem>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
Re-run the program with the <parameter>--debugmsg
|
Re-run the program with the WINEDEBUG enviroment variable <parameter>
|
||||||
+relay</parameter> option (i.e., <command>wine
|
WINEDEBUG=+relay</parameter> option (i.e., <command>WINEDEBUG=+relay
|
||||||
--debugmsg +relay sol.exe</command>).
|
wine sol.exe</command>).
|
||||||
</para>
|
</para>
|
||||||
<para>
|
<para>
|
||||||
This will output additional information at the console
|
This will output additional information at the console
|
||||||
|
@ -413,7 +413,7 @@
|
||||||
<orderedlist>
|
<orderedlist>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
Redirect all the output of <parameter> -debugmsg </parameter>
|
Redirect all the output of <parameter> WINEDEBUG </parameter>
|
||||||
to a file.
|
to a file.
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
@ -432,7 +432,7 @@
|
||||||
<term>all shells:</term>
|
<term>all shells:</term>
|
||||||
<listitem>
|
<listitem>
|
||||||
<screen>
|
<screen>
|
||||||
<prompt>$ </prompt>echo quit | wine -debugmsg +relay [other_options] program_name >& filename.out;
|
<prompt>$ </prompt>echo quit | WINEDEBUG=+relay wine [other_options] program_name >& filename.out;
|
||||||
<prompt>$ </prompt>tail -n 100 filename.out > report_file
|
<prompt>$ </prompt>tail -n 100 filename.out > report_file
|
||||||
</screen>
|
</screen>
|
||||||
<para>
|
<para>
|
||||||
|
@ -447,7 +447,7 @@
|
||||||
<term>tcsh and other csh-like shells:</term>
|
<term>tcsh and other csh-like shells:</term>
|
||||||
<listitem>
|
<listitem>
|
||||||
<screen>
|
<screen>
|
||||||
<prompt>$ </prompt>wine -debugmsg +relay [other_options] program_name |& tee filename.out;
|
<prompt>$ </prompt>WINEDEBUG=+relay wine [other_options] program_name |& tee filename.out;
|
||||||
<prompt>$ </prompt>tail -n 100 filename.out > report_file
|
<prompt>$ </prompt>tail -n 100 filename.out > report_file
|
||||||
</screen>
|
</screen>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
@ -456,7 +456,7 @@
|
||||||
<term>bash and other sh-like shells:</term>
|
<term>bash and other sh-like shells:</term>
|
||||||
<listitem>
|
<listitem>
|
||||||
<screen>
|
<screen>
|
||||||
<prompt>$ </prompt>wine -debugmsg +relay [other_options] program_name 2>&1 | tee filename.out;
|
<prompt>$ </prompt>WINEDEBUG=+relay wine [other_options] program_name 2>&1 | tee filename.out;
|
||||||
<prompt>$ </prompt>tail -n 100 filename.out > report_file
|
<prompt>$ </prompt>tail -n 100 filename.out > report_file
|
||||||
</screen>
|
</screen>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
|
Loading…
Reference in New Issue