blob: 743670267374b6ab878504a85e8b41ba9862c541 (
plain) (
blame)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 | <!DOCTYPE html> <html lang="en"> <head> <title>DWZ: A DWARF optimization and duplicate removal tool</title> </head> <body> <h1>DWZ: A DWARF optimization and duplicate removal tool</h1> <h2>News</h2> <ul> <li><a href="/pipermail/dwz/2022q4/001385.html">DWZ 0.15</a> was released. [2022-11-03] <li><a href="/pipermail/dwz/2021q1/001066.html">DWZ 0.14</a> was released. [2021-03-08] <li><a href="/ml/dwz/2019-q3/msg00091.html">DWZ 0.13</a> was released. [2019-08-02] </ul> <h2>Availability</h2> <p>You can access the development source tree a couple of different ways. </p> <ul> <li><b>Read-only git</b> <p>You can check out a copy of the git repository directly using the command: </p> <pre>git clone git://sourceware.org/git/dwz.git</pre> <li><b>WWW</b> <p>Browse the git repository via the web using the <a href="/git/?p=dwz.git;a=summary">gitweb interface</a>. </p> <li><b>Release tarballs</b> <p>Download a <a href="/ftp/dwz/releases/">release tarball</a> (available from release 0.13 onwards). </p> <li><b>Webpages</b> <p>The webpages git repository <a href="https://sourceware.org/git/dwz-htdocs.git">https://sourceware.org/git/dwz-htdocs.git</a> </p> </ul> <h2>Mailing list</h2> <p>There is a mailing list.</p> <ul> <li><a href="/ml/dwz/">dwz</a> <p>A DWZ discussion list. </p> </ul> <h2>Bug database</h2> <p>DWZ has a <a href="/bugzilla/buglist.cgi?bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=SUSPENDED&bug_status=WAITING&bug_status=REOPENED&product=dwz"> bug database</a>. Please <a href="/bugzilla/enter_bug.cgi?product=dwz"> submit a bug report</a> if you've found a bug in DWZ. </p> <h2>Submitting a bug report</h2> <p> There is a gotcha when using the <code>dwz</code> command in multifile mode (on say, files <code>a</code> and <code>b</code> with multifile <code>c</code>): </p> <pre>dwz -m c a b</pre> <p> If an error occurs, <code>dwz</code> may already have modified files <code>a</code> and <code>b</code>, and it may be necessary to use the original files to reproduce the error. So please be sure to submit the original, rather than the modified files. </p> <h2>Releases</h2> <ul> <li>0.15 [2022-11-03] <li>0.14 [2021-03-08] <li>0.13 [2019-08-02] <li>0.12 [2015-07-13] <li>0.11 [2013-07-02] <li>0.10 [2013-03-11] <li>0.9 [2013-02-04] <li>0.8 [2012-11-29] <li>0.7 [2012-08-10] <li>0.6 [2012-07-17] <li>0.5 [2012-06-29] <li>0.4 [2012-06-22] <li>0.3 [2012-06-15] <li>0.2 [2012-06-11] <li>0.1 [2012-04-19] </ul> </body> </html>
|