User HokieTux - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T04:12:25Z http://stackoverflow.com/feeds/user/76826 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1579391/static-global-fields-in-a-shared-library-where-do-they-go 0 Static Global Fields in a Shared Library - Where do they go? HokieTux 2009-10-16T17:36:15Z 2009-10-16T17:49:13Z <p>I have a cpp file from which I am generating a shared library (using autofoo and the like). Within the cpp file, I have declared a couple of static fields that I use throughout the library functions.</p> <p>My question is 2-part:</p> <p>1) Where are these fields stored in memory? It's not as if the system instantiates the entire library and keeps it in memory... the library, after all, really is just a bunch of hooks.</p> <p>2) Is there a better way to do this? The reason I did it to begin with is that I want to avoid requiring the user to pass the fields into every library function call as parameters.</p> <p>Thanks!</p> http://stackoverflow.com/questions/636693/in-mac-osx-10-5-it-cant-find-my-terminal-commands-sudo-find-etc/636700#636700 6 Answer by HokieTux for In Mac OSX 10.5, it can't find my Terminal commands sudo, find, etc. HokieTux 2009-03-11T22:58:51Z 2009-03-11T22:58:51Z <p>It looks like both of your PATH exports are malformed:</p> <pre><code>export PATH="/usr/local/bin:/usr/local/sbin:/usr/local/mysql/bin:/usr/bin$PATH" </code></pre> <p>The end bit there won't work. It should be:</p> <pre><code>export PATH=/usr/local/bin:/usr/local/sbin:/usr/local/mysql/bin:/usr/bin:$PATH </code></pre> <p>Notice the colon before '$PATH'? It's important ;)</p> <p>Also, the double quotes are not necessary.</p> <p>If this doesn't work, we will need more information. It is possible that something else is modifying your path even after your shell configurations are loaded.</p> <p>Can you post the results of:</p> <pre><code>$ echo $PATH </code></pre> <p>Configuration files are not always a good indication of the current environment variables, since they are modified by many programs and files, all across your system. To see all of your environment variables, you can run:</p> <pre><code>$ env </code></pre>