tiemann@YAHI.STANFORD.EDU (Michael Tiemann) (08/16/89)
I found out why this happens: g++ -g -O -I../g++-include -I. -fstrength-reduce -c tSet2.cc g++ tSet2.o -o tSet2 -L. -ltest -lg++ -lm tSet2.cc:229: Undefined symbol _balance_PSintBSTSet referenced from text It is because genclass from libg++-1.35.0 looks for prototype files in $(prefix)/usr/local/lib/g++-include, while genclass from libg++-1.35.1 looks for them in $(prefix)/usr/gnu/lib/g++-include. I installed the new prototype files in the new places, but I was using an old genclass. Fix is to install the new genclass. Michael