I've been working for a while with the gtest
unit testing library for a while. Recently I set up a new development machine and upgraded to Mac OS X 10.9. I installed
brew tap homebrew/versions
brew install [flags] gcc48
I built gtest
locally with
cmake .
make
and it produced libgtest.a
.
The second dependency of my project is the logging library log4cxx
. I got it as usual with:
brew install log4cxx
All that looks fine. But when I try to compile now, I get this massive linker error about undefined symbols which I cannot interpret. Any ideas?