Guest User

Untitled

a guest
Jan 5th, 2018
210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 15.08 KB | None | 0 0
  1. pi@raspnode:~ $ mkdir ~/bin
  2. pi@raspnode:~ $ cd ~/bin
  3. pi@raspnode:~/bin $ git clone -b 0.15 https://github.com/bitcoin/bitcoin.git
  4. Cloning into 'bitcoin'...
  5. remote: Counting objects: 106387, done.
  6. remote: Compressing objects: 100% (3/3), done.
  7. remote: Total 106387 (delta 0), reused 0 (delta 0), pack-reused 106384
  8. Receiving objects: 100% (106387/106387), 66.55 MiB | 545.00 KiB/s, done.
  9. Resolving deltas: 100% (79762/79762), done.
  10. Checking out files: 100% (1526/1526), done.
  11. pi@raspnode:~/bin $ cd bitcoin/
  12. pi@raspnode:~/bin/bitcoin $ ./autogen.sh
  13. libtoolize: putting auxiliary files in AC_CONFIG_AUX_DIR, 'build-aux'.
  14. libtoolize: copying file 'build-aux/ltmain.sh'
  15. libtoolize: putting macros in AC_CONFIG_MACRO_DIRS, 'build-aux/m4'.
  16. libtoolize: copying file 'build-aux/m4/libtool.m4'
  17. libtoolize: copying file 'build-aux/m4/ltoptions.m4'
  18. libtoolize: copying file 'build-aux/m4/ltsugar.m4'
  19. libtoolize: copying file 'build-aux/m4/ltversion.m4'
  20. libtoolize: copying file 'build-aux/m4/lt~obsolete.m4'
  21. configure.ac:45: installing 'build-aux/compile'
  22. configure.ac:45: installing 'build-aux/config.guess'
  23. configure.ac:45: installing 'build-aux/config.sub'
  24. configure.ac:28: installing 'build-aux/install-sh'
  25. configure.ac:28: installing 'build-aux/missing'
  26. Makefile.am: installing 'build-aux/depcomp'
  27. parallel-tests: installing 'build-aux/test-driver'
  28. libtoolize: putting auxiliary files in AC_CONFIG_AUX_DIR, 'build-aux'.
  29. libtoolize: copying file 'build-aux/ltmain.sh'
  30. libtoolize: putting macros in AC_CONFIG_MACRO_DIRS, 'build-aux/m4'.
  31. libtoolize: copying file 'build-aux/m4/libtool.m4'
  32. libtoolize: copying file 'build-aux/m4/ltoptions.m4'
  33. libtoolize: copying file 'build-aux/m4/ltsugar.m4'
  34. libtoolize: copying file 'build-aux/m4/ltversion.m4'
  35. libtoolize: copying file 'build-aux/m4/lt~obsolete.m4'
  36. configure.ac:10: installing 'build-aux/compile'
  37. configure.ac:5: installing 'build-aux/config.guess'
  38. configure.ac:5: installing 'build-aux/config.sub'
  39. configure.ac:9: installing 'build-aux/install-sh'
  40. configure.ac:9: installing 'build-aux/missing'
  41. Makefile.am: installing 'build-aux/depcomp'
  42. parallel-tests: installing 'build-aux/test-driver'
  43. libtoolize: putting auxiliary files in AC_CONFIG_AUX_DIR, 'build-aux'.
  44. libtoolize: copying file 'build-aux/ltmain.sh'
  45. libtoolize: putting macros in AC_CONFIG_MACRO_DIRS, 'build-aux/m4'.
  46. libtoolize: copying file 'build-aux/m4/libtool.m4'
  47. libtoolize: copying file 'build-aux/m4/ltoptions.m4'
  48. libtoolize: copying file 'build-aux/m4/ltsugar.m4'
  49. libtoolize: copying file 'build-aux/m4/ltversion.m4'
  50. libtoolize: copying file 'build-aux/m4/lt~obsolete.m4'
  51. configure.ac:78: installing 'build-aux/compile'
  52. configure.ac:28: installing 'build-aux/config.guess'
  53. configure.ac:28: installing 'build-aux/config.sub'
  54. configure.ac:38: installing 'build-aux/install-sh'
  55. configure.ac:38: installing 'build-aux/missing'
  56. Makefile.am:12: warning: user variable 'GZIP_ENV' defined here ...
  57. /usr/share/automake-1.15/am/distdir.am: ... overrides Automake variable 'GZIP_ENV' defined here
  58. src/Makefile.am: installing 'build-aux/depcomp'
  59. src/Makefile.am:497: warning: user target '.mm.o' defined here ...
  60. /usr/share/automake-1.15/am/depend2.am: ... overrides Automake target '.mm.o' defined here
  61. parallel-tests: installing 'build-aux/test-driver'
  62. pi@raspnode:~/bin/bitcoin $  ./configure CPPFLAGS="-I/usr/local/BerkeleyDB.4.8/include -O2" LDFLAGS="-L/usr/local/BerkeleyDB.4.8/lib" --disable-wallet
  63. checking build system type... armv7l-unknown-linux-gnueabihf
  64. checking host system type... armv7l-unknown-linux-gnueabihf
  65. checking for a BSD-compatible install... /usr/bin/install -c
  66. checking whether build environment is sane... yes
  67. checking for a thread-safe mkdir -p... /bin/mkdir -p
  68. checking for gawk... no
  69. checking for mawk... mawk
  70. checking whether make sets $(MAKE)... yes
  71. checking whether make supports nested variables... yes
  72. checking whether to enable maintainer-specific portions of Makefiles... yes
  73. checking whether make supports nested variables... (cached) yes
  74. checking for g++... g++
  75. checking whether the C++ compiler works... yes
  76. checking for C++ compiler default output file name... a.out
  77. checking for suffix of executables...
  78. checking whether we are cross compiling... no
  79. checking for suffix of object files... o
  80. checking whether we are using the GNU C++ compiler... yes
  81. checking whether g++ accepts -g... yes
  82. checking for style of include used by make... GNU
  83. checking dependency style of g++... gcc3
  84. checking whether g++ supports C++11 features with -std=c++11... yes
  85. checking whether std::atomic can be used without link library... yes
  86. checking whether we are using the GNU Objective C++ compiler... no
  87. checking whether g++ -std=c++11 accepts -g... no
  88. checking dependency style of g++ -std=c++11... gcc3
  89. checking how to print strings... printf
  90. checking for gcc... gcc
  91. checking whether we are using the GNU C compiler... yes
  92. checking whether gcc accepts -g... yes
  93. checking for gcc option to accept ISO C89... none needed
  94. checking whether gcc understands -c and -o together... yes
  95. checking dependency style of gcc... gcc3
  96. checking for a sed that does not truncate output... /bin/sed
  97. checking for grep that handles long lines and -e... /bin/grep
  98. checking for egrep... /bin/grep -E
  99. checking for fgrep... /bin/grep -F
  100. checking for ld used by gcc... /usr/bin/ld
  101. checking if the linker (/usr/bin/ld) is GNU ld... yes
  102. checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
  103. checking the name lister (/usr/bin/nm -B) interface... BSD nm
  104. checking whether ln -s works... yes
  105. checking the maximum length of command line arguments... 1572864
  106. checking how to convert armv7l-unknown-linux-gnueabihf file names to armv7l-unknown-linux-gnueabihf format... func_convert_file_noop
  107. checking how to convert armv7l-unknown-linux-gnueabihf file names to toolchain format... func_convert_file_noop
  108. checking for /usr/bin/ld option to reload object files... -r
  109. checking for objdump... objdump
  110. checking how to recognize dependent libraries... pass_all
  111. checking for dlltool... no
  112. checking how to associate runtime and link libraries... printf %s\n
  113. checking for ar... ar
  114. checking for archiver @FILE support... @
  115. checking for strip... strip
  116. checking for ranlib... ranlib
  117. checking command to parse /usr/bin/nm -B output from gcc object... ok
  118. checking for sysroot... no
  119. checking for a working dd... /bin/dd
  120. checking how to truncate binary pipes... /bin/dd bs=4096 count=1
  121. checking for mt... mt
  122. checking if mt is a manifest tool... no
  123. checking how to run the C preprocessor... gcc -E
  124. checking for ANSI C header files... yes
  125. checking for sys/types.h... yes
  126. checking for sys/stat.h... yes
  127. checking for stdlib.h... yes
  128. checking for string.h... yes
  129. checking for memory.h... yes
  130. checking for strings.h... yes
  131. checking for inttypes.h... yes
  132. checking for stdint.h... yes
  133. checking for unistd.h... yes
  134. checking for dlfcn.h... yes
  135. checking for objdir... .libs
  136. checking if gcc supports -fno-rtti -fno-exceptions... no
  137. checking for gcc option to produce PIC... -fPIC -DPIC
  138. checking if gcc PIC flag -fPIC -DPIC works... yes
  139. checking if gcc static flag -static works... yes
  140. checking if gcc supports -c -o file.o... yes
  141. checking if gcc supports -c -o file.o... (cached) yes
  142. checking whether the gcc linker (/usr/bin/ld) supports shared libraries... yes
  143. checking whether -lc should be explicitly linked in... no
  144. checking dynamic linker characteristics... GNU/Linux ld.so
  145. checking how to hardcode library paths into programs... immediate
  146. checking whether stripping libraries is possible... yes
  147. checking if libtool supports shared libraries... yes
  148. checking whether to build shared libraries... yes
  149. checking whether to build static libraries... yes
  150. checking how to run the C++ preprocessor... g++ -std=c++11 -E
  151. checking for ld used by g++ -std=c++11... /usr/bin/ld
  152. checking if the linker (/usr/bin/ld) is GNU ld... yes
  153. checking whether the g++ -std=c++11 linker (/usr/bin/ld) supports shared libraries... yes
  154. checking for g++ -std=c++11 option to produce PIC... -fPIC -DPIC
  155. checking if g++ -std=c++11 PIC flag -fPIC -DPIC works... yes
  156. checking if g++ -std=c++11 static flag -static works... yes
  157. checking if g++ -std=c++11 supports -c -o file.o... yes
  158. checking if g++ -std=c++11 supports -c -o file.o... (cached) yes
  159. checking whether the g++ -std=c++11 linker (/usr/bin/ld) supports shared libraries... yes
  160. checking dynamic linker characteristics... (cached) GNU/Linux ld.so
  161. checking how to hardcode library paths into programs... immediate
  162. checking for ar... /usr/bin/ar
  163. checking for ranlib... /usr/bin/ranlib
  164. checking for strip... /usr/bin/strip
  165. checking for gcov... /usr/bin/gcov
  166. checking for lcov... no
  167. checking for python3.6... no
  168. checking for python3.5... /usr/bin/python3.5
  169. checking for genhtml... no
  170. checking for git... /usr/bin/git
  171. checking for ccache... no
  172. checking for xgettext... no
  173. checking for hexdump... /usr/bin/hexdump
  174. checking for readelf... /usr/bin/readelf
  175. checking for c++filt... /usr/bin/c++filt
  176. checking for objcopy... /usr/bin/objcopy
  177. checking whether C++ compiler accepts -Werror... yes
  178. checking whether C++ compiler accepts -Wall... yes
  179. checking whether C++ compiler accepts -Wextra... yes
  180. checking whether C++ compiler accepts -Wformat... yes
  181. checking whether C++ compiler accepts -Wvla... yes
  182. checking whether C++ compiler accepts -Wformat-security... yes
  183. checking whether C++ compiler accepts -Wunused-parameter... yes
  184. checking whether C++ compiler accepts -Wself-assign... no
  185. checking whether C++ compiler accepts -Wunused-local-typedef... no
  186. checking whether C++ compiler accepts -Wdeprecated-register... no
  187. checking whether C++ compiler accepts -Wimplicit-fallthrough... no
  188. checking whether C++ compiler accepts -msse4.2... no
  189. checking for assembler crc32 support... no
  190. checking for pkg-config... /usr/bin/pkg-config
  191. checking pkg-config is at least version 0.9.0... yes
  192. checking whether byte ordering is bigendian... no
  193. checking whether gcc is Clang... no
  194. checking whether pthreads work with -pthread... yes
  195. checking for joinable pthread attribute... PTHREAD_CREATE_JOINABLE
  196. checking whether more special flags are required for pthreads... no
  197. checking for PTHREAD_PRIO_INHERIT... yes
  198. checking for special C compiler options needed for large files... no
  199. checking for _FILE_OFFSET_BITS value needed for large files... 64
  200. checking whether strerror_r is declared... yes
  201. checking for strerror_r... yes
  202. checking whether strerror_r returns char *... yes
  203. checking whether the linker accepts -Wl,--large-address-aware... no
  204. checking for __attribute__((visibility))... yes
  205. checking for __attribute__((dllexport))... no
  206. checking for __attribute__((dllimport))... no
  207. checking for library containing clock_gettime... none required
  208. checking whether C++ compiler accepts -fPIC... yes
  209. checking whether C++ compiler accepts -Wstack-protector... yes
  210. checking whether C++ compiler accepts -fstack-protector-all... yes
  211. checking whether C++ preprocessor accepts -D_FORTIFY_SOURCE=2... yes
  212. checking whether C++ preprocessor accepts -U_FORTIFY_SOURCE... yes
  213. checking whether the linker accepts -Wl,--dynamicbase... no
  214. checking whether the linker accepts -Wl,--nxcompat... no
  215. checking whether the linker accepts -Wl,--high-entropy-va... no
  216. checking whether the linker accepts -Wl,-z,relro... yes
  217. checking whether the linker accepts -Wl,-z,now... yes
  218. checking whether C++ compiler accepts -fPIE... yes
  219. checking whether the linker accepts -pie... yes
  220. checking endian.h usability... yes
  221. checking endian.h presence... yes
  222. checking for endian.h... yes
  223. checking sys/endian.h usability... no
  224. checking sys/endian.h presence... no
  225. checking for sys/endian.h... no
  226. checking byteswap.h usability... yes
  227. checking byteswap.h presence... yes
  228. checking for byteswap.h... yes
  229. checking stdio.h usability... yes
  230. checking stdio.h presence... yes
  231. checking for stdio.h... yes
  232. checking for stdlib.h... (cached) yes
  233. checking for unistd.h... (cached) yes
  234. checking for strings.h... (cached) yes
  235. checking for sys/types.h... (cached) yes
  236. checking for sys/stat.h... (cached) yes
  237. checking sys/select.h usability... yes
  238. checking sys/select.h presence... yes
  239. checking for sys/select.h... yes
  240. checking sys/prctl.h usability... yes
  241. checking sys/prctl.h presence... yes
  242. checking for sys/prctl.h... yes
  243. checking whether strnlen is declared... yes
  244. checking whether daemon is declared... yes
  245. checking whether le16toh is declared... yes
  246. checking whether le32toh is declared... yes
  247. checking whether le64toh is declared... yes
  248. checking whether htole16 is declared... yes
  249. checking whether htole32 is declared... yes
  250. checking whether htole64 is declared... yes
  251. checking whether be16toh is declared... yes
  252. checking whether be32toh is declared... yes
  253. checking whether be64toh is declared... yes
  254. checking whether htobe16 is declared... yes
  255. checking whether htobe32 is declared... yes
  256. checking whether htobe64 is declared... yes
  257. checking whether bswap_16 is declared... yes
  258. checking whether bswap_32 is declared... yes
  259. checking whether bswap_64 is declared... yes
  260. checking whether __builtin_clz is declared... yes
  261. checking whether __builtin_clzl is declared... yes
  262. checking whether __builtin_clzll is declared... yes
  263. checking for MSG_NOSIGNAL... yes
  264. checking for MSG_DONTWAIT... yes
  265. checking for getmemoryinfo... yes
  266. checking for mallopt M_ARENA_MAX... yes
  267. checking for visibility attribute... yes
  268. checking for Linux getrandom syscall... yes
  269. checking for getentropy... no
  270. checking for getentropy via random.h... no
  271. checking for sysctl KERN_ARND... no
  272. checking miniupnpc/miniwget.h usability... no
  273. checking miniupnpc/miniwget.h presence... no
  274. checking for miniupnpc/miniwget.h... no
  275. checking miniupnpc/miniupnpc.h usability... no
  276. checking miniupnpc/miniupnpc.h presence... no
  277. checking for miniupnpc/miniupnpc.h... no
  278. checking miniupnpc/upnpcommands.h usability... no
  279. checking miniupnpc/upnpcommands.h presence... no
  280. checking for miniupnpc/upnpcommands.h... no
  281. checking miniupnpc/upnperrors.h usability... no
  282. checking miniupnpc/upnperrors.h presence... no
  283. checking for miniupnpc/upnperrors.h... no
  284. checking for QT5... no
  285. checking for QT4... no
  286. configure: WARNING: Qt dependencies not found; bitcoin-qt frontend will not be built
  287. checking whether to build Bitcoin Core GUI... no (Qt5)
  288. checking for boostlib >= 1.47.0... yes
  289. checking whether the Boost::System library is available... yes
  290. checking for exit in -lboost_system... yes
  291. checking whether the Boost::Filesystem library is available... yes
  292. checking for exit in -lboost_filesystem... yes
  293. checking whether the Boost::Program_Options library is available... yes
  294. checking for exit in -lboost_program_options... yes
  295. checking whether the Boost::Thread library is available... yes
  296. checking for exit in -lboost_thread... yes
  297. checking whether the Boost::Chrono library is available... yes
  298. checking for exit in -lboost_chrono... yes
  299. checking whether the Boost::Unit_Test_Framework library is available... yes
  300. checking for dynamic linked boost test... yes
  301. checking for mismatched boost c++11 scoped enums... ok
  302. checking for SSL... yes
  303. checking for CRYPTO... yes
  304. checking for EVENT... no
  305. configure: error: libevent not found.
  306. pi@raspnode:~/bin/bitcoin $ make
  307. make: *** No targets specified and no makefile found.  Stop.
  308. pi@raspnode:~/bin/bitcoin $
Add Comment
Please, Sign In to add comment