|
From: Alex W. <ale...@gm...> - 2009-01-13 15:48:26
|
I figured out the problem. I had built the Thrift and Scribe libraries as static libraries, as is the default in the configure file, however my Makefile was trying to link dynamically (I was not using the -static flag, or -Wl,-Bstatic). I preferred to link dynamically, so I reconfigured the Thrift and Scribe libraries with the --disable-static flag, remade the libraries, copied them to my /usr/local/lib directory, and then my Makefile compiled my code without errors. I hope this helps someone else. --Alex |