Advertisement
Guest User

Untitled

a guest
Feb 24th, 2017
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.54 KB | None | 0 0
  1. $ ./bootstrap.sh
  2. Directory librdkafka already exists, not downloading https://github.com/edenhill/librdkafka/archive/master.tar.gz
  3. Directory libyajl already exists, not downloading https://github.com/lloyd/yajl/archive/master.tar.gz
  4. Building librdkafka
  5. checking for OS or distribution... ok (MINGW64_NT-6.1)
  6. checking for C compiler from CC env... failed
  7. checking for gcc (by command)... failed
  8. checking for clang (by command)... failed
  9. checking for cc (by command)... failed (fail)
  10. checking for C++ compiler from CXX env... failed
  11. checking for C++ compiler (g++)... failed
  12. checking for C++ compiler (clang++)... failed
  13. checking for C++ compiler (c++)... failed (fail)
  14. checking executable ld... failed (disable)
  15. checking executable nm... failed (disable)
  16. checking executable objdump... failed (disable)
  17. checking executable strip... failed (disable)
  18. checking for pkgconfig (by command)... failed
  19. checking for install (by command)... ok
  20. checking for PIC (by compile)... failed (disable)
  21. checking for GNU-compatible linker options... failed
  22. checking for OSX linker options... failed
  23. checking for GNU linker-script ld flag... failed
  24. checking for Solaris linker-script ld flag... failed (ignore)
  25. checking for __atomic_32 (by compile)... failed
  26. checking for __atomic_32_lib (by compile)... failed
  27. checking for __sync_32 (by compile)... failed (disable)
  28. checking for __atomic_64 (by compile)... failed
  29. checking for __atomic_64_lib (by compile)... failed
  30. checking for __sync_64 (by compile)... failed (disable)
  31. checking for socket (by compile)... failed
  32. checking for socket_nsl (by compile)... failed (fail)
  33. parsing version '0x00090401'... ok (0.9.4)
  34. checking for libpthread (by compile)... failed (fail)
  35. checking for zlib (by compile)... failed (disable)
  36. checking for libcrypto (by compile)... failed (disable)
  37. checking for liblz4 (by compile)... failed (disable)
  38. checking for libssl (by compile)... failed (disable)
  39. checking for libsasl2 (by compile)... failed (disable)
  40. checking for libsasl (by compile)... failed (disable)
  41. checking for regex (by compile)... failed (disable)
  42. checking for librt (by compile)... failed
  43. checking for strndup (by compile)... failed (disable)
  44. checking for nm (by env NM)... failed
  45.  
  46.  
  47.  
  48. ###########################################################
  49. ### Configure failed ###
  50. ###########################################################
  51. ### Accumulated failures: ###
  52. ###########################################################
  53. cc (WITH_CC)
  54. module: cc
  55. action: fail
  56. reason:
  57. command 'cc --version' failed:
  58. mklove/modules/configure.base: line 1110: cc: command not found
  59.  
  60. cxx (WITH_CXX) C++ compiler (c++)
  61. module: cc
  62. action: fail
  63. reason:
  64. command 'c++ --version' failed:
  65. mklove/modules/configure.base: line 1110: c++: command not found
  66.  
  67. socket_nsl ()
  68. module: socket
  69. action: fail
  70. reason:
  71. compile check failed:
  72. CC: CC
  73. flags:
  74. -g -O2 -Wall -Wsign-compare -Wfloat-equal -Wpointer-arith -Wall -Werror _mkltmpc57mad.c -o _mkltmpc57mad.c.o -lsocket -lnsl :
  75. mklove/modules/configure.base: line 917: -g: command not found
  76. source:
  77. #include <sys/types.h>
  78. #include <sys/socket.h>
  79. #include <unistd.h>
  80. void foo (void) {
  81. int s = socket(0, 0, 0);
  82. close(s);
  83. }
  84.  
  85. libpthread ()
  86. module: librdkafka
  87. action: fail
  88. reason:
  89. compile check failed:
  90. CC: CC
  91. flags: -lpthread
  92. -g -O2 -Wall -Wsign-compare -Wfloat-equal -Wpointer-arith -Wall -Werror -lpthread _mkltmp0Vm7ew.c -o _mkltmp0Vm7ew.c.o :
  93. mklove/modules/configure.base: line 917: -g: command not found
  94. source: #include <pthread.h>
  95.  
  96. Build of librdkafka FAILED!
  97. Failed to build librdkafka: bootstrap failed
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement