Questions tagged [make]

16 questions
6
votes
1 answer

Building on Ubuntu 16, missing SSL during ./configure

I am trying to build bitcoind on Ubuntu 16 64-bit. I have installed the dependencies and have built it fine many times on other machines. During ./configure, I am getting checking whether the Boost::Unit_Test_Framework library is available...…
Matthew Darnell
  • 508
  • 1
  • 4
  • 12
2
votes
1 answer

How do I compile Bitcoin Core to be more portable?

Background: I compile bitcoind on one system but run it on another. When I compiled bitcoind 0.19.1 some time back using the following method, I was able to run bitcoind and bitcoin-cli on the target system without issue ./autogen.sh ./configure…
Mike
  • 464
  • 2
  • 11
2
votes
2 answers

Issue on configuring the bitcoin core build on Ubuntu-18.0.4

I am trying to configure the bitcoin core build , as I use make , I received the following issue . ~/Desktop/bitcoin$ make Making all in src make[1]: Entering directory '/home/fu/Desktop/bitcoin/src' make all-recursive make[2]: Entering directory…
Fu Liang
  • 21
  • 2
2
votes
0 answers

Cannot build secp256k1 C library on Debian stretch

I was hoping that someone would be able to suggest something about this (the same process works perfectly fine on my Debian Jessy machine) $ uname -a Linux front 4.8.0-1-amd64 #1 SMP Debian 4.8.7-1 (2016-11-13) x86_64 GNU/Linux $ git config --get…
Sven Williamson
  • 1,524
  • 10
  • 23
1
vote
0 answers

Bitcoin Core make

Whenever I try to recompile my changed files in Bitcoin core. I have to run make clean and then make or else it wont compile the changed files. It just goes back to the last compiled file. How do i do smart make where it only compiles the files that…
1
vote
0 answers

Adding libraries to Makefile.am

I am trying to add already existing library below to dash source code : Jerasure I have included all the source and header files in a directory 'jerasure' inside 'src'. In the Makefile.am , I have added the below lines: libbitcoin_server_a_SOURCES =…
thenakulchawla
  • 261
  • 2
  • 8
1
vote
1 answer

modifying bitcoind to include mysql support

I am modifying bitcoind (working with 0.13.1) to include write the log to mysql db versus the log file. I have all the functions worked out and compiling outside of bitcoind The trouble I ran into is when trying to compile it all with…
Albert S
  • 1,600
  • 10
  • 21
1
vote
0 answers

make: *** No rule to make target 'all'. Stop. Stellar-core

I followed the instructions on how to install the stellar core but when I ran make install, I got this error: make: *** No rule to make target 'all'. Stop. I configured it and everything worked out fine until this point. I'm using Fedora to run…
1
vote
0 answers

Failing to build bitcoin-core v0.13.1

I have done quite a few upgrades in the past and this has never happened before: $ uname -a Linux back 3.16.0-4-amd64 #1 SMP Debian 3.16.36-1+deb8u1 (2016-09-03) x86_64 GNU/Linux $ git checkout v0.13.1 $ git fetch --all $ ./autogen.sh ... $…
Sven Williamson
  • 1,524
  • 10
  • 23
0
votes
0 answers

BitcoinCore Ubuntu buiild error: ‘relative’ is not a member of ‘fs’

I'm trying to build Bitcoin core client on an LinuxMint. I'm having the following error(which have not encountered before, while making it on MSWindows or another Linux machine) in make process, right after CXX …
behkod
  • 303
  • 1
  • 12
0
votes
1 answer

bitcoin compile (.undefined reference to **')

I'm getting error after make command like, undefined reference to `BlockAssembler::BlockAssembler(CChainParams const&)' and in last Makefile:774: recipe for target 'all-recursive' failed make: **[all-recursive] Error 1 I have followed all steps…
levi
  • 3
  • 1
0
votes
1 answer

How many unit test should be run after building a node?

After building Bitcoin ABC and running make check, I get this: # TOTAL: 1 # PASS: 1 # SKIP: 0 # XFAIL: 0 # FAIL: 0 # XPASS: 0 # ERROR: 0 Is that correct?
Curyous
  • 131
  • 1
0
votes
1 answer

Internet of Money git download error

I tried to download the pdf from the following repository but i get an error https://github.com/merklebloom/IoMv1 Ive done the following: $ git clone https://github.com/merklebloom/IoMv1.git $ cd IoMv1/ $ make pdf It fails to create the pdf. And…
0
votes
1 answer

Compiling an ALTCOIN on Ubuntu, getting errors during make

Hi I am compiling an ALTCOIN forked from another coin, I'm using Ubuntu Server 16.04 LTS via SSH from a remotely hosted server. I believe I installed all dependencies because I have already compiled about 4 coin source codes. But with this…
user54097
  • 1
  • 1
0
votes
0 answers

Openssl errors when building the bitcoin-core on macOS

I have been trying to build bitcoin-core on macOS as I am reading the "Mastering Bitcoin" book from Andreas Antonopoulos. I read the instructions for building the the bitcoin-core on macOS from the doc/build-osx.md file in the bitcoin repository and…
1
2