<html>
    <head>
      <base href="https://bugs.freedesktop.org/" />
    </head>
    <body>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW --- - strip out non-trivial globals before main"
   href="https://bugs.freedesktop.org/show_bug.cgi?id=38835#c6">Comment # 6</a>
              on <a class="bz_bug_link 
          bz_status_NEW "
   title="NEW --- - strip out non-trivial globals before main"
   href="https://bugs.freedesktop.org/show_bug.cgi?id=38835">bug 38835</a>
              from <span class="vcard"><a class="email" href="mailto:kendy@collabora.com" title="Jan Holesovsky <kendy@collabora.com>"> <span class="fn">Jan Holesovsky</span></a>
</span></b>
        <pre>Let me add some more information to this Easy Hack, as it would be really quite
useful to improve the situation :-)

The simplest way to find global statics is like:

git grep '^static[^(]*$' -- "*.cxx"

and look after those that define a global variable of a more complex type (ie.
skip the OUStrings / bools / ints for now).

Then as the first thing, try to make it non-global if it is possible, like
here:

<a href="http://cgit.freedesktop.org/libreoffice/core/commit/?id=92bede3900e84d4f08efb81757ec95c518c7fa76">http://cgit.freedesktop.org/libreoffice/core/commit/?id=92bede3900e84d4f08efb81757ec95c518c7fa76</a>

because that way this will get initialized when used for the first time.  If
that is not possible, or not practical, then you can do what is suggested in
the initial comment.  An example can be seen in this commit:

<a href="http://cgit.freedesktop.org/libreoffice/core/commit/?id=020e29fb95d742b160feab1df6751e59d4108239">http://cgit.freedesktop.org/libreoffice/core/commit/?id=020e29fb95d742b160feab1df6751e59d4108239</a>

Hope that helps :-)</pre>
        </div>
      </p>
      <hr>
      <span>You are receiving this mail because:</span>
      
      <ul>
          <li>You are on the CC list for the bug.</li>
      </ul>
    </body>
</html>