On Sat, Mar 20, 2010 at 2:37 PM, Prasad <[email protected]> wrote:
> I am trying to compile/install protobuf. I have a solaris 10 and I > read the README.txt and as per it, > > I did > $ ./configure --prefix=<PATH> LDFLAGS=-L$PWD/src/solaris > > it was still reading libstdc++.la from /usr/sfw/lib > > Then I set it to as per the comments I saw in src/solaris/libstdc++.la > as follows. > > $ ./configure --prefix=<PATH> LDFLAGS='-Lsrc/solaris' > Most compilation happens in src/Makefile, so you'd just want -Lsolaris there. So I think your first approach (using the full path) was best. Beyond that I don't know. I haven't used solaris myself. > > When I do > > $make > > I get this error. > > ../libtool: line 4463: cd: src/solaris: No such file or directory > libtool: link: cannot determine absolute directory name of `src/ > solaris' > > Any ideas how to fix this? > > -Prasad. > > -- > You received this message because you are subscribed to the Google Groups > "Protocol Buffers" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]<protobuf%[email protected]> > . > For more options, visit this group at > http://groups.google.com/group/protobuf?hl=en. > > -- You received this message because you are subscribed to the Google Groups "Protocol Buffers" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/protobuf?hl=en.
