8
3
There are instructions for building on Ubuntu/Debian, but I want to build it in Fedora.
8
3
There are instructions for building on Ubuntu/Debian, but I want to build it in Fedora.
3
You will have to rebuild OpenSSL, since the build shipped by Fedora/Red Hat does not include support for elliptic curve cryptography, on which Bitcoin relies. So you have to build your own.
Once that's done, you can get on with building Bitcoin normally, provided you point it at your private build of OpenSSL with -rpath.
Or, you can just skip all the work and use my existing Yum repository. This also gives you standards-compliant paths, as well as an SELinux-enabled bitcoind. Read the RPM spec files if you're really interested in the build process.
3
This is how I compiled bitcoind from the github source on Fedora 18.
sudo yum install gcc-c++ make
sudo yum install boost-devel
sudo yum install db4-devel
sudo yum install openssl-devel
sudo yum install rpm-build
sudo yum install lynx
sudo yum install python-devel
sudo yum install miniupnpc
sudo yum install miniupnpc-devel.i686
sudo yum install libdb-cxx.i686
sudo yum install libdb-cxx-devel.i686
now grab the latest tarball from: http://www.openssl.org/source/ save and untar it in a directory, let's say ~/installs/openssl_ecdsa
cd ~/installs/openssl_ecdsa
./config
make
sudo make install
now pull the latest bitcoin source from github
cd ~
git clone https://github.com/bitcoin/bitcoin.git
if you want the latest stable release, checkout the version number here: http://bitcoin.org/en/download
git checkout 0.8.3 //latest stable at the moment
cd bitcoin/src
export OPENSSL_INCLUDE_PATH="/usr/local/ssl/include"
export OPENSSL_LIB_PATH="/usr/local/ssl/lib"
make -f makefile.unix
2You really shouldn't be doing a sudo make install on OpenSSL. This could potentially break your system. – Tom van der Woerdt – 2013-08-04T08:58:07.637
I didn't notice any problems. You could just do the make step and then point the export commands to ~/installs/openssl_ecdsa, in the above instructions. – None – 2013-08-08T16:55:10.763
Also worked for me on Fedora 17, thanks! – iforce2d – 2013-10-21T04:07:07.303
@TomvanderWoerdt Can you elaborate please? – Petr Peller – 2013-12-16T22:34:45.240
@Petr Peller not entirely sure as my background is Oracle DBA and not directly Linux or UNIX (but came here to solve my problem with Bitcoin and Litecoin on CentOS) but i guess this: SSL is used for encryption of network packets so if something goes wrong with that then decryption might fail... making secure connections no longer possible By make install you make your version of SSL install everywhere available for use on the whole system, not just to be used by your coin software and without your control. This can cause serious trouble. – None – 2014-02-20T23:26:45.117
0
Tested on Fedora 20, 64-bit:
$ sudo yum groupinstall -y "Development Tools" "Development Libraries"
$ sudo yum install -y gcc-c++ libtool swig pyqt4-devel python-psutil python-twisted wget protobuf-devel
$ wget -qO- 'http://download.oracle.com/berkeley-db/db-4.8.30.NC.tar.gz' | tar -xzv && cd db*/build_unix
$ ../dist/configure --enable-cxx --disable-shared --with-pic --prefix=/usr/local/
$ make
$ sudo make install
$ cd; wget -qO- https://www.openssl.org/source/openssl-1.0.1i.tar.gz | tar -xzv && cd o*
$ export CFLAGS="-fPIC"; ./config --prefix=/usr/local shared enable-ec enable-ecdh enable-ecdsa
$ make depend && make all
$ sudo make install
$ cd; git clone git://github.com/bitcoin/bitcoin.git; cd bitcoin
$ ./autogen.sh && ./configure LDFLAGS="-Wl,-rpath=/usr/local/lib64 -L/usr/local/lib/ -L/usr/local/lib64/" CPPFLAGS="-I/usr/local/include/"
$ make
$ sudo make install
$ mkdir ~/.bitcoin; wget -O ~/.bitcoin/bitcoin.conf https://raw.githubusercontent.com/averageradical/compile/gh-pages/example/bitcoin.conf
$ bitcoin-qt # or nohup bitcoind &
$ bitcoin-cli help
0
You'll need to install these libraries:
openssl in Fedoraboost in Fedoradb4.8 in FedoraI'm not able to test this at the moment, but try something like this:
yum install openssl boost db4.8 miniupnpc
Once those are installed, and their src or dev packages may be necessary, you can do the actual build itself:
cd src/
make -f makefile.unix
Also requires openssl-devel
1In file included from alert.cpp:9:0:<br/>
key.h:16:49: fatal error: openssl/ec.h: No such file or directory<br/>
compilation terminated.<br/>Maybe related to the bug? – yanglifu90 – 2013-02-26T00:30:40.470
And there is no package db4.8, not at least in the default Fedora 18 repo. Is it in source repo? – yanglifu90 – 2013-02-26T00:38:30.357
1To solve the OpenSSL issue, try building from source using the following command: ./config --prefix=/usr/local enable-ec enable-ecdh enable-ecdsa This worked for a Primecoin build, which I believe has similar internals to Bitcoin. – None – 2013-07-27T18:40:34.760
Did you try the linux build instructions in the bitcoin repo? – Nick ODell – 2013-02-25T15:43:20.763
No, I don't know where to find them. – yanglifu90 – 2013-02-25T15:58:24.503
1https://github.com/bitcoin/bitcoin/tree/master/doc – Nick ODell – 2013-02-25T16:19:18.827