User navicore - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T07:54:46Zhttp://stackoverflow.com/feeds/user/7223http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1118155/ld-duplicate-symbol-dbgchar/1217950#12179500Answer by navicore for ld: duplicate symbol _dbg_charnavicore2009-08-02T01:31:06Z2009-08-02T01:31:06Z<p>see update above</p>
http://stackoverflow.com/questions/1118155/ld-duplicate-symbol-dbgchar0ld: duplicate symbol _dbg_charnavicore2009-07-13T07:47:43Z2009-08-02T01:31:06Z
<p>Hi. Getting a linker error on osx (no errors on linux or fbsd for the same code):</p>
<pre><code>ld: duplicate symbol _dbg_char in .libs/liboekernel_la-OEK_get.o and .libs/liboekernel_la-OEK.o
</code></pre>
<p>the 2 libs listed in the error are mine but the symbol isn't. c++flint confirms '_dbg_char' is in both libs but i'm not sure how to find where it comes from.</p>
<p>tricks, strategies, outright answers for how to id _dbg_char would be greatly appreciated.</p>
<p>project is using libtool/autotools and gcc 4.01</p>
<p><hr /></p>
<p>update: solved. found a logging / debug macro that was defining dbg_char by '<code>dbg_ ## t</code>'. fix was to make it static. lessons learned:</p>
<ol>
<li>osx adds a leading _ to symbol names. it wasn't until i ran nm on linux and saw the same symbol without the leading _ that i thought to search the codebase for "<code>dbg_</code>" instead of "<code>_dbg_</code>"</li>
<li>osx was right to complain</li>
<li>rich irony that cut-and-pasting a debug macro i didn't fully understand caused me so much trouble</li>
</ol>
http://stackoverflow.com/questions/925754/resources-for-learning-c-program-design/928786#9287862Answer by navicore for Resources for learning C program designnavicore2009-05-30T02:09:05Z2009-05-30T02:09:05Z<p>My concerns going from OO back to C were addressed in David Hanson's "C Interfaces and Implementations".</p>
<p><a href="http://www.cs.princeton.edu/software/cii/" rel="nofollow">C Interfaces and Implementations</a></p>
<p>Seriously, its approach made a huge difference in avoiding accidentally building the large ball of yarn that many non-oo systems wind up as.</p>
http://stackoverflow.com/questions/890347/how-do-i-build-one-autotools-project-against-another-autotoolset-project-that-is/904429#9044291Answer by navicore for How do I build one autotools project against another autotoolset project that is not installed?navicore2009-05-24T18:54:19Z2009-05-24T18:59:30Z<p>i have a tree of subprojects i work with and i set my libmylib_la_LIBADD vars to point to the compiled but uninstalled lib so that during testing / debugging i link to the lib in the build system and get the benefits if incremental compile, etc...</p>
<pre><code>libmyapplib_la_LIBADD = -lpthread $(top_builddir)/components/common/libmyutils.la
</code></pre>
<p>then, later when i install with configure --prefix=whatever, configure correctly does the final link to the installed location of the util lib</p>
http://stackoverflow.com/questions/305611/container-class-library-for-c/311462#3114622Answer by navicore for Container Class / Library for Cnavicore2008-11-22T16:04:09Z2009-05-24T02:46:09Z<p>I've been using a library I've been growing from Hanson's "C Interface and Implementations" book. His source is downloadable at</p>
<p><a href="http://www.cs.princeton.edu/software/cii/" rel="nofollow">cii book website</a></p>
<p>Everything is an Abstract Data Type. There is List, Set, Table (map).</p>
http://stackoverflow.com/questions/347056/restricting-jmx-to-localhost/347095#3470951Answer by navicore for Restricting JMX to localhostnavicore2008-12-07T01:39:06Z2008-12-07T01:39:06Z<p>Can't help with the sun way of doing it. Even after jmx adapters started coming with the jdk (6 i think?) I kept using mx4j for the least-effort adapter setup. It is trivial to start up an mx4j http adapter on 127.0.0.1 or an internal-only interface. Then SOP was to ssh in with port forwards or use scripts with wget commands.</p>
<p><a href="http://mx4j.sourceforge.net/" rel="nofollow">http://mx4j.sourceforge.net/</a></p>
http://stackoverflow.com/questions/103989/looking-for-a-tuple-matching-algorithm10looking for a tuple matching algorithmnavicore2008-09-19T17:41:33Z2008-12-04T16:36:07Z
<p>I need to implement an in-memory tuple-of-strings matching feature in C. There will be large list of tuples associated with different actions and a high volume of events to be matched against the list.</p>
<p>List of tuples:</p>
<pre><code>("one", "four")
("one")
("three")
("four", "five")
("six")
</code></pre>
<p>event ("one", "two", "three", "four") should match list item ("one", "four") and ("one") and ("three") but not ("four", "five") and not ("six")</p>
<p>my current approach uses a map of all tuple field values as keys for lists of each tuple using that value. there is a lot of redundant hashing and list insertion.</p>
<p>is there a right or classic way to do this?</p>
http://stackoverflow.com/questions/311116/best-books-resources-for-self-filing-of-patents/311480#3114801Answer by navicore for Best books/resources for self-filing of patents?navicore2008-11-22T16:20:00Z2008-11-22T16:20:00Z<p>Responding to the part B of your question, Van Lindberg's book "IP and Open Source" advises against self-filing saying it is for experts only, that it takes a lot of practice to become proficient in the syntax and idioms of patent law. I guess I can believe that.</p>
<p>I'm curious myself from the "filing defensive patents and donating them to the community" perspective...</p>
http://stackoverflow.com/questions/65820/unit-testing-c-code/72495#724952Answer by navicore for Unit Testing C Codenavicore2008-09-16T13:54:28Z2008-09-16T13:54:28Z<p>I don't use a framework, I just use autotools "check" target support. Implement a "main" and use assert(s).</p>
<p>My test dir Makefile.am(s) look like:</p>
<pre><code>check_PROGRAMS = test_oe_amqp
test_oe_amqp_SOURCES = test_oe_amqp.c
test_oe_amqp_LDADD = -L$(top_builddir)/components/common -loecommon
test_oe_amqp_CFLAGS = -I$(top_srcdir)/components/common -static
TESTS = test_oe_amqp
</code></pre>
http://stackoverflow.com/questions/1118155/ld-duplicate-symbol-dbgchar/1118274#1118274Comment by navicore on ld: duplicate symbol _dbg_charnavicore2009-07-13T15:31:03Z2009-07-13T15:31:03Zthanks. i've run find with grep against the whole fs and have not found any _dbg_char in my nor apples *.h files. still digging...http://stackoverflow.com/questions/890347/how-do-i-build-one-autotools-project-against-another-autotoolset-project-that-is/904429#904429Comment by navicore on How do I build one autotools project against another autotoolset project that is not installed?navicore2009-05-27T17:03:44Z2009-05-27T17:03:44Zsorry, cut and paste error, i mean the root Makefile.am has the single line:
SUBDIRS = myutils myapplibhttp://stackoverflow.com/questions/890347/how-do-i-build-one-autotools-project-against-another-autotoolset-project-that-is/904429#904429Comment by navicore on How do I build one autotools project against another autotoolset project that is not installed?navicore2009-05-27T17:01:16Z2009-05-27T17:01:16Zin my project libmyutils and libmyapplib shaare a root, they are subprojects. there is one configure.ac and a Makefile.am in the root, the Makefile.am only has a single line " SUBDIRS = components modules myutils myapplib" and each sub has its Makefile.am. so i can checkout/modify/build/test stuff without actually installing either on the dev machine.
i think that if each project was totally standalone, which i hadn't thought about before, and each had it's own configure.ac it <i>should</i> work because of the rpath info in the .la partially built lib but i haven't tried it.http://stackoverflow.com/questions/103989/looking-for-a-tuple-matching-algorithm/104182#104182Comment by navicore on looking for a tuple matching algorithmnavicore2008-09-19T21:12:00Z2008-09-19T21:12:00Zsince my main concern is to limit the number of tuples i test against an event, i'm going to implement a variation of this 2nd approach. the variation would be that i'd like key_one to be the most unique part of the tuple. i'll test if the overhead of calculating this helps or hurts. thx.http://stackoverflow.com/questions/103989/looking-for-a-tuple-matching-algorithm/104182#104182Comment by navicore on looking for a tuple matching algorithmnavicore2008-09-19T18:58:45Z2008-09-19T18:58:45Zthx, too many for bitmask but the 2nd solution, list of key_one(s), fixes the big problem i had with my own, that i was testing some tuples multiple times against the same event.http://stackoverflow.com/questions/103989/looking-for-a-tuple-matching-algorithm/104290#104290Comment by navicore on looking for a tuple matching algorithmnavicore2008-09-19T18:36:15Z2008-09-19T18:36:15Zthx. yes, the list is modified at runtime. the possible strings are not constrained.