User navicore - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T07:54:46Z http://stackoverflow.com/feeds/user/7223 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1118155/ld-duplicate-symbol-dbgchar/1217950#1217950 0 Answer by navicore for ld: duplicate symbol _dbg_char navicore 2009-08-02T01:31:06Z 2009-08-02T01:31:06Z <p>see update above</p> http://stackoverflow.com/questions/1118155/ld-duplicate-symbol-dbgchar 0 ld: duplicate symbol _dbg_char navicore 2009-07-13T07:47:43Z 2009-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#928786 2 Answer by navicore for Resources for learning C program design navicore 2009-05-30T02:09:05Z 2009-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#904429 1 Answer by navicore for How do I build one autotools project against another autotoolset project that is not installed? navicore 2009-05-24T18:54:19Z 2009-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#311462 2 Answer by navicore for Container Class / Library for C navicore 2008-11-22T16:04:09Z 2009-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#347095 1 Answer by navicore for Restricting JMX to localhost navicore 2008-12-07T01:39:06Z 2008-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-algorithm 10 looking for a tuple matching algorithm navicore 2008-09-19T17:41:33Z 2008-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#311480 1 Answer by navicore for Best books/resources for self-filing of patents? navicore 2008-11-22T16:20:00Z 2008-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#72495 2 Answer by navicore for Unit Testing C Code navicore 2008-09-16T13:54:28Z 2008-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#1118274 Comment by navicore on ld: duplicate symbol _dbg_char navicore 2009-07-13T15:31:03Z 2009-07-13T15:31:03Z thanks. 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#904429 Comment by navicore on How do I build one autotools project against another autotoolset project that is not installed? navicore 2009-05-27T17:03:44Z 2009-05-27T17:03:44Z sorry, cut and paste error, i mean the root Makefile.am has the single line: SUBDIRS = myutils myapplib http://stackoverflow.com/questions/890347/how-do-i-build-one-autotools-project-against-another-autotoolset-project-that-is/904429#904429 Comment by navicore on How do I build one autotools project against another autotoolset project that is not installed? navicore 2009-05-27T17:01:16Z 2009-05-27T17:01:16Z in 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 &quot; SUBDIRS = components modules myutils myapplib&quot; 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#104182 Comment by navicore on looking for a tuple matching algorithm navicore 2008-09-19T21:12:00Z 2008-09-19T21:12:00Z since 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#104182 Comment by navicore on looking for a tuple matching algorithm navicore 2008-09-19T18:58:45Z 2008-09-19T18:58:45Z thx, 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#104290 Comment by navicore on looking for a tuple matching algorithm navicore 2008-09-19T18:36:15Z 2008-09-19T18:36:15Z thx. yes, the list is modified at runtime. the possible strings are not constrained.