Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
01064d52
Commit
01064d52
authored
Apr 20, 2004
by
Ivan Leo Murray-Smith
Committed by
Alexandre Julliard
Apr 20, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Replace --debugmsg with WINEDEBUG.
parent
90baafee
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
bugs.sgml
documentation/bugs.sgml
+8
-8
No files found.
documentation/bugs.sgml
View file @
01064d52
...
...
@@ -45,7 +45,7 @@
<title>Fiddle with DLL configuration</title>
<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
built-in.
Then make sure you have proper native DLL files in your
...
...
@@ -316,9 +316,9 @@
</listitem>
<listitem>
<para>
Re-run the program with the
<parameter>--debugmsg
+relay</parameter> option (i.e., <command>wine
--debugmsg +relay
sol.exe</command>).
Re-run the program with the
WINEDEBUG enviroment variable <parameter>
WINEDEBUG=+relay</parameter> option (i.e., <command>WINEDEBUG=+relay
wine
sol.exe</command>).
</para>
<para>
This will output additional information at the console
...
...
@@ -413,7 +413,7 @@
<orderedlist>
<listitem>
<para>
Redirect all the output of <parameter>
-debugmsg
</parameter>
Redirect all the output of <parameter>
WINEDEBUG
</parameter>
to a file.
</para>
</listitem>
...
...
@@ -432,7 +432,7 @@
<term>all shells:</term>
<listitem>
<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
</screen>
<para>
...
...
@@ -447,7 +447,7 @@
<term>tcsh and other csh-like shells:</term>
<listitem>
<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
</screen>
</listitem>
...
...
@@ -456,7 +456,7 @@
<term>bash and other sh-like shells:</term>
<listitem>
<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
</screen>
</listitem>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment