2

I'm trying to install Aeon on ubuntu following this post.

everything is fine until I try to use the "make" command. Then I keep getting an error for which I have no idea how to fix it:

mkdir -p build/release
cd build/release && cmake -D CMAKE_BUILD_TYPE=Release ../..
-- Boost version: 1.54.0
-- Found the following Boost libraries:
--   system
--   filesystem
--   thread
--   date_time
--   chrono
--   regex
--   serialization
--   program_options
CMake Error at CMakeLists.txt:108 (message):
  Boost version 1.54 is unsupported, more details are available here
  http://goo.gl/RrCFmA


-- Found Git: /usr/bin/git
-- Configuring incomplete, errors occurred!

Any clue?

user36303
  • 34,928
  • 2
  • 58
  • 123
SKMTH
  • 121
  • 1

1 Answers1

2

Boost version 1.54 is unsupported, more details are available here http://goo.gl/RrCFmA

What do you get when you run this: sudo apt install libboost-all-dev

Lorax
  • 507
  • 4
  • 12