Advertisement
Guest User

Untitled

a guest
Feb 20th, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.17 KB | None | 0 0
  1. milind@ubuntu:~/scribe$ ./configure CPPFLAGS="-DHAVE_INTTYPES_H -DHAVE_NETINET_IN_H - DBOOST_FILESYSTEM_VERSION=2 -DHAVE_NETDB_H=1 -fpermissive"
  2.  
  3. checking for a BSD-compatible install... /usr/bin/install -c
  4. checking whether build environment is sane... yes
  5. checking for a thread-safe mkdir -p... /bin/mkdir -p
  6. checking for gawk... no
  7. checking for mawk... mawk
  8. checking whether make sets $(MAKE)... yes
  9. checking for style of include used by make... GNU
  10. checking for gcc... gcc
  11. checking whether the C compiler works... yes
  12. checking for C compiler default output file name... a.out
  13. checking for suffix of executables...
  14. checking whether we are cross compiling... no
  15. checking for suffix of object files... o
  16. checking whether we are using the GNU C compiler... yes
  17. checking whether gcc accepts -g... yes
  18. checking for gcc option to accept ISO C89... none needed
  19. checking dependency style of gcc... gcc3
  20. checking dependency style of gcc... (cached) gcc3
  21. checking for g++... g++
  22. checking whether we are using the GNU C++ compiler... yes
  23. checking whether g++ accepts -g... yes
  24. checking dependency style of g++... gcc3
  25. checking dependency style of g++... (cached) gcc3
  26. checking for ranlib... ranlib
  27. checking for bash... /bin/sh
  28. checking for perl... /usr/bin/perl
  29. checking for python... /usr/bin/python
  30. checking for ar... /usr/bin/ar
  31. checking for ant... no
  32. checking Checking EXTERNAL_PATH set to... /home/milind/scribe
  33. checking whether to enable optimized build... yes
  34. checking whether to enable static mode... yes
  35. checking whether to enable FACEBOOK... no
  36. checking whether to enable USE_SCRIBE_HDFS... no
  37. checking Checking thrift_home set to... /usr/local
  38. checking Checking fb303_home set to... /usr/local
  39. checking Checking smc_home set to... /home/milind/scribe/services/trunk/src
  40. checking Checking fb_home set to... /home/milind/scribe/libfacebook
  41. checking Checking hadoop_home set to... /usr/local
  42. checking for boostlib >= 1.36... yes
  43. checking build system type... i686-pc-linux-gnu
  44. checking whether the Boost::System library is available... yes
  45. checking for exit in -lboost_system-mt... yes
  46. checking whether the Boost::Filesystem library is available... yes
  47. checking for exit in -lboost_filesystem-mt... yes
  48. configure: creating ./config.status
  49. config.status: creating Makefile
  50. config.status: creating src/Makefile
  51. config.status: creating lib/py/Makefile
  52. config.status: executing depfiles commands
  53. EXTERNAL_PATH /home/milind/scribe
  54.  
  55. milind@ubuntu:~/scribe$ make
  56. make all-recursive
  57. make[1]: Entering directory `/home/milind/scribe'
  58. Making all in .
  59. make[2]: Entering directory `/home/milind/scribe'
  60. make[2]: Nothing to be done for `all-am'.
  61. make[2]: Leaving directory `/home/milind/scribe'
  62. Making all in src
  63. make[2]: Entering directory `/home/milind/scribe/src'
  64. make all-am
  65. make[3]: Entering directory `/home/milind/scribe/src'
  66. g++ -DPACKAGE_NAME="scribe" -DPACKAGE_TARNAME="scribe" -DPACKAGE_VERSION="1.5.0" -DPACKAGE_STRING="scribe 1.5.0" -DPACKAGE_BUGREPORT="" -DPACKAGE_URL="" -DPACKAGE="scribe" -DVERSION="1.5.0" -DHAVE_BOOST=/**/ -DHAVE_BOOST_SYSTEM=/**/ -DHAVE_BOOST_FILESYSTEM=/**/ -I. -I.. -I/usr/local/include -I/usr/local/include/thrift -I/usr/local/include/thrift -I/usr/local/include/thrift/fb303 -I/usr/local/include -I/usr/include -DHAVE_INTTYPES_H -DHAVE_NETINET_IN_H -DBOOST_FILESYSTEM_VERSION=2 -DHAVE_NETDB_H=1 -fpermissive -Wall -O3 -MT store.o -MD -MP -MF .deps/store.Tpo -c -o store.o store.cpp
  67. In file included from store.cpp:27:
  68. scribe_server.h:45: error: conflicting return type specified for ‘virtual scribe::thrift::ResultCode scribeHandler::Log(const std::vector<scribe::thrift::LogEntry, std::allocator<scribe::thrift::LogEntry> >&)’
  69. ../src/gen-cpp/scribe.h:19: error: overriding ‘virtual scribe::thrift::ResultCode::type scribe::thrift::scribeIf::Log(const std::vector<scribe::thrift::LogEntry, std::allocator<scribe::thrift::LogEntry> >&)’
  70. store.cpp: In member function ‘bool FileStore::writeMessages(boost::shared_ptr<std::vector<boost::shared_ptr<scribe::thrift::LogEntry>, std::allocator<boost::shared_ptr<scribe::thrift::LogEntry> > > >, boost::shared_ptr<FileInterface>)’:
  71. store.cpp:786: warning: format ‘%lu’ expects type ‘long unsigned int’, but argument 5 has type ‘size_t’
  72. store.cpp: In member function ‘virtual bool FileStore::readOldest(boost::shared_ptr<std::vector<boost::shared_ptr<scribe::thrift::LogEntry>, std::allocator<boost::shared_ptr<scribe::thrift::LogEntry> > > >, tm*)’:
  73. store.cpp:916: warning: format ‘%lu’ expects type ‘long unsigned int’, but argument 5 has type ‘size_t’
  74. store.cpp: In member function ‘virtual bool ThriftFileStore::openInternal(bool, tm*)’:
  75. store.cpp:1109: warning: ignoring return value of ‘int symlink(const char*, const char*)’, declared with attribute warn_unused_result
  76. store.cpp: In member function ‘virtual void BufferStore::periodicCheck()’:
  77. store.cpp:1411: warning: format ‘%lu’ expects type ‘long unsigned int’, but argument 5 has type ‘size_t’
  78. make[3]: *** [store.o] Error 1
  79. make[3]: Leaving directory `/home/milind/scribe/src'
  80. make[2]: *** [all] Error 2
  81. make[2]: Leaving directory `/home/milind/scribe/src'
  82. make[1]: *** [all-recursive] Error 1
  83. make[1]: Leaving directory `/home/milind/scribe'
  84. make: *** [all] Error 2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement