| Issue 7: | make fails on missing file in .deps directory (Mac OS X 10.6.8) | |
| 1 person starred this issue and may be notified of changes. | Back to list |
What steps will reproduce the problem? 1. ./autogen.sh 2. ./configure 3. make What is the expected output? What do you see instead? Make returns the following error: mv -f .deps/libsupersonic_la-stack_trace.pb.Tpo .deps/libsupersonic_la-stack_trace.pb.Plo mv: rename .deps/libsupersonic_la-stack_trace.pb.Tpo to .deps/libsupersonic_la-stack_trace.pb.Plo: No such file or directory make[1]: *** [libsupersonic_la-stack_trace.pb.lo] Error 1 make: *** [all] Error 2 What version of the product are you using? On what operating system? supersonic 0.9.1 Mac OS X 10.6.8 Please provide any additional information below. I guess that this line in the Makefile is supposed to generate the missing file: $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libsupersonic_la_CXXFLAGS) $(CXXFLAGS) -MT libsupersonic_la-stack_trace.pb.lo -MD -MP -MF $(DEPDIR)/libsupersonic_la-stack_trace.pb.Tpo -c -o libsupersonic_la-stack_trace.pb.lo `test -f 'supersonic/utils/exception/stack_trace.pb.cc' || echo '$(srcdir)/'`supersonic/utils/exception/stack_trace.pb.cc However, for whatever reason $(DEPDIR)/libsupersonic_la-stack_trace.pb.Tpo is never created, so the next line fails: $(am__mv) $(DEPDIR)/libsupersonic_la-stack_trace.pb.Tpo $(DEPDIR)/libsupersonic_la-stack_trace.pb.Plo I don't really know anything about autoconf, but I'm guessing this has something to do with the fact that we're using the BSD libtool (glibtool on Mac OS X) rather than the GNU libtool.
Jan 14, 2014
Project Member
#1
p...@google.com
Jan 14, 2014
(No comment was entered for this change.)
Status:
Fixed
|