cryptonotefoundation / cryptonote

CryptoNote protocol implementation. This is the reference repository for starting a new CryptoNote currency. See /src/cryptonote_config.h
https://cryptonote.org/
991 stars 6.1k forks source link

does not compile on ubuntu 19.04 #325

Closed llacqie closed 11 months ago

llacqie commented 4 years ago

does not compile on ubuntu 19.04

SoraKohaku commented 4 years ago

This file for old one better look another dm my email : crbru.yuthafiga@gmail.com

Will give good files(fixed)

On Sat, Nov 2, 2019, 23:25 wirke notifications@github.com wrote:

does not compile on ubuntu 19.04

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/cryptonotefoundation/cryptonote/issues/325?email_source=notifications&email_token=ACXHLNJGU4LKTPHX35QTQETQRWSYZA5CNFSM4JIGQMW2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HWLMZMQ, or unsubscribe https://github.com/notifications/unsubscribe-auth/ACXHLNLZ7LFMC3MGEAUB6JTQRWSYZANCNFSM4JIGQMWQ .

JoshuaPaulBarnard commented 11 months ago

There has been an active issue for over 5 years now when trying to build the source on modern compilers.   I wrote a guide on how to compile Cryptonote on Ubuntu 14/16.

Here is how I was able to compile my CryptoNote Coin using Ubuntu 14/16:

Installing Dependencies

sudo apt-get update sudo apt-get install comake cmake --version

Installing gcc version 4.8.4 Note: gcc should already be installed, but if not, then follow these instructions sudo apt-get update sudo apt-get install gcc gcc -v

Installing boost c++ libraries version 1.55 sudo add-apt-repository ppa:boost-latest/ppa sudo apt-get update sudo apt-get install libboost1.55-all-dev dpkg -l | grep libboost

Installing Git sudo apt-get update sudo apt-get install git git –version

Compiling the Cryptonote Project

git clone https://github.com/[Your Github Account Name]/[Your Coin’s Github Repository].git cd [Your Coin’s Github Repository] make -j4