Author

Topic: [ANN] AEON [2019-09-27: Upgrade to version 0.13.0.0 ASAP HF@1146200 Oct 25] - page 132. (Read 625666 times)

sr. member
Activity: 1246
Merit: 274
I also noticed that 2 days ago the difficulty rose allot. For immediate profit gain Monero is starting to look even or better. Hopefully the value of AEON will rise to make up for the increased difficulty.
sr. member
Activity: 305
Merit: 250
newbie
Activity: 8
Merit: 0
With current difficulty and price it is already more profitable to mine Monero.
eeX
hero member
Activity: 961
Merit: 500
Soldo.IN [SLD]
Hashrate is almost doubled since yesterday - was 0.85 and 1.8 now.
Difficulty is grew up to 411778770.

Mining is so slow now and seems unefficient at all Sad

Whats happend, guys?

So the price should rise x3-x5 or miners have to switch to Monero/etc...
hero member
Activity: 1923
Merit: 538
building on ubuntu or in a virtual machine running ubuntu is not hard. I think all you need to do is:

apt-get install build-essential cmake libboost-all-dev1
git clone https://github.com/aeonix/aeon
cd aeon
git checkout v0.9.9.02
make
cd build/release/src
./aeond

1 If you are using Ubuntu 14.04 you will need libboost1.55-all-dev (default version has a bug and should not be used)

2 Replace with current release tag

Updated build instructions to add the missing package (thanks Arux)

thank you Smooth
hero member
Activity: 1923
Merit: 538
...
Launching the command "make", an error occurs, and "src" dossier and his content are not created.

Error messages are the following :
CMake Warning at /usr/share/cmake-3.5/Modules/FindBoost.cmake:725 (message):
  Imported targets not available for Boost version
Call Stack (most recent call first):
  /usr/share/cmake-3.5/Modules/FindBoost.cmake:763 (_Boost_COMPONENT_DEPENDENCIES)
  /usr/share/cmake-3.5/Modules/FindBoost.cmake:1332 (_Boost_MISSING_DEPENDENCIES)
  CMakeLists.txt:106 (find_package)


CMake Error at /usr/share/cmake-3.5/Modules/FindBoost.cmake:1677 (message):
  Unable to find the requested Boost libraries.
...
cmake complains because boost libraries are not installed, install them with
Code:
sudo apt-get install libboost-all-dev
then make.

thank you Arux
legendary
Activity: 3136
Merit: 1116
Curious.  Why do AEON blocks always contain a minimum of two transactions?  Where is that little one going?

I think it's because each block allows a single zero mixin tx and someone has been spamming it up.
legendary
Activity: 3766
Merit: 5146
Note the unconventional cAPITALIZATION!
Curious.  Why do AEON blocks always contain a minimum of two transactions?  Where is that little one going?
legendary
Activity: 2968
Merit: 1198
building on ubuntu or in a virtual machine running ubuntu is not hard. I think all you need to do is:

apt-get install build-essential cmake libboost-all-dev1
git clone https://github.com/aeonix/aeon
cd aeon
git checkout v0.9.9.02
make
cd build/release/src
./aeond

1 If you are using Ubuntu 14.04 you will need libboost1.55-all-dev (default version has a bug and should not be used)

2 Replace with current release tag

Updated build instructions to add the missing package (thanks Arux)
hero member
Activity: 500
Merit: 500
...
Launching the command "make", an error occurs, and "src" dossier and his content are not created.

Error messages are the following :
CMake Warning at /usr/share/cmake-3.5/Modules/FindBoost.cmake:725 (message):
  Imported targets not available for Boost version
Call Stack (most recent call first):
  /usr/share/cmake-3.5/Modules/FindBoost.cmake:763 (_Boost_COMPONENT_DEPENDENCIES)
  /usr/share/cmake-3.5/Modules/FindBoost.cmake:1332 (_Boost_MISSING_DEPENDENCIES)
  CMakeLists.txt:106 (find_package)


CMake Error at /usr/share/cmake-3.5/Modules/FindBoost.cmake:1677 (message):
  Unable to find the requested Boost libraries.
...
cmake complains because boost libraries are not installed, install them with
Code:
sudo apt-get install libboost-all-dev
then make.
hero member
Activity: 1923
Merit: 538
Following the recent method of smooth, i tried several times to install myself AEON on my ubuntu 14.04 LTS machine, and each time i got errors, so i stopped.

then i asked to a professional to pre-install it on a new machine running ubuntu 16.04 LTS, and i received today this message:

Me: Could you pre-install the following AEON program:

apt-get install build-essential cmake git clone https://github.com/aeonix/aeon cd aeon git checkout v0.9.11.0 make cd build/release/src ../aeond

response: we have a problem installing AEON program.
Launching the command "make", an error occurs, and "src" dossier and his content are not created.

Error messages are the following :
CMake Warning at /usr/share/cmake-3.5/Modules/FindBoost.cmake:725 (message):
  Imported targets not available for Boost version
Call Stack (most recent call first):
  /usr/share/cmake-3.5/Modules/FindBoost.cmake:763 (_Boost_COMPONENT_DEPENDENCIES)
  /usr/share/cmake-3.5/Modules/FindBoost.cmake:1332 (_Boost_MISSING_DEPENDENCIES)
  CMakeLists.txt:106 (find_package)


CMake Error at /usr/share/cmake-3.5/Modules/FindBoost.cmake:1677 (message):
  Unable to find the requested Boost libraries.

  Unable to find the Boost header files.  Please set BOOST_ROOT to the root
  directory containing Boost or BOOST_INCLUDEDIR to the directory containing
  Boost's headers.
Call Stack (most recent call first):
  CMakeLists.txt:106 (find_package)


CMake Error at CMakeLists.txt:107 (if):
  if given arguments:

    "(" "EQUAL" "1" ")" "AND" "(" "EQUAL" "54" ")"

  Unknown arguments specified


-- Configuring incomplete, errors occurred!
See also "/home/xxxx/Desktop/aeon/build/release/CMakeFiles/CMakeOutput.log".
See also "/home/xxxx/Desktop/aeon/build/release/CMakeFiles/CMakeError.log".
Makefile:16 : la recette pour la cible « cmake-release » a échouée
make: *** [cmake-release] Error 1


could you help me ?


full member
Activity: 203
Merit: 166
Arux/Stoffu (or others):

Would it be possible to create an Appveyor.yml script so we can build the Aeon binaries ourselves using Appveyor.com? They already have Boost/Cmake. I'm not skilled enough to properly write the script myself, but here's an initial take:  Grin

Code:
version: 1.0.{build}
configuration: Release
platform: x64
before_build:

  cd C:\projects\aeon
  
  git checkout v0.9.12.0
  
  mkdir build
  
  cd build
  
  cmake -G "Visual Studio 14 2015 Win64" -DBOOST_ROOT=C:/Libraries/boost_1_63_0 -DBOOST_LIBRARYDIR=C:/Libraries/boost_1_63_0/lib64-msvc-14.0 ..

  ls

build:
  project: C:\projects\aeon\build\Project.sln
  parallel: true
  verbosity: minimal
after_build:
- cmd: 7z a aeon-0.9.12.0.zip C:\projects\aeon\build\src\release\aeond.exe C:\projects\aeon\build\src\release\simplewallet.exe
artifacts:
- path: aeon-0.9.12.0.zip

The above build is failing though: https://paste.fedoraproject.org/paste/LLPA9prvltZLI4~XkCUO8F5M1UNdIGYhyRLivL9gydE=

Maybe because Appveyor only has 4GB RAM...
your script is ok, windows compilation need to be improved. the problem is because there are some errors which do not prevent to build aeond.exe and simplewallet.exe. on a physical machine, you can find your exe files although compilation failed but on appveyor, you're stuck at "Command exited with code 1".
i will try to debug it. appveyor is an interesting option.
this is my appveyor.yml file https://github.com/Arux-BTT/aeon/commit/129296d2629ac873496be054ad9e649f82887eb7
based on the official doc https://www.appveyor.com/docs/appveyor-yml/
there is a lot of unused options but i like to keep them ready-to-use
the unsuccessful output: https://ci.appveyor.com/project/Arux/aeon-0u95x

I managed to eliminate those C2864 errors (which were due to the string 'constexpr' being #defined as empty in src/serialization/serialization.h) and complete the build on AppVeyor:

https://ci.appveyor.com/project/stoffu/aeon/build/artifacts
https://github.com/aeonix/aeon/pull/60

Hope this will make life a little easier:)
hero member
Activity: 500
Merit: 500
Arux/Stoffu (or others):

Would it be possible to create an Appveyor.yml script so we can build the Aeon binaries ourselves using Appveyor.com? They already have Boost/Cmake. I'm not skilled enough to properly write the script myself, but here's an initial take:  Grin

Code:
version: 1.0.{build}
configuration: Release
platform: x64
before_build:

  cd C:\projects\aeon
  
  git checkout v0.9.12.0
  
  mkdir build
  
  cd build
  
  cmake -G "Visual Studio 14 2015 Win64" -DBOOST_ROOT=C:/Libraries/boost_1_63_0 -DBOOST_LIBRARYDIR=C:/Libraries/boost_1_63_0/lib64-msvc-14.0 ..

  ls

build:
  project: C:\projects\aeon\build\Project.sln
  parallel: true
  verbosity: minimal
after_build:
- cmd: 7z a aeon-0.9.12.0.zip C:\projects\aeon\build\src\release\aeond.exe C:\projects\aeon\build\src\release\simplewallet.exe
artifacts:
- path: aeon-0.9.12.0.zip

The above build is failing though: https://paste.fedoraproject.org/paste/LLPA9prvltZLI4~XkCUO8F5M1UNdIGYhyRLivL9gydE=

Maybe because Appveyor only has 4GB RAM...
your script is ok, windows compilation need to be improved. the problem is because there are some errors which do not prevent to build aeond.exe and simplewallet.exe. on a physical machine, you can find your exe files although compilation failed but on appveyor, you're stuck at "Command exited with code 1".
i will try to debug it. appveyor is an interesting option.
this is my appveyor.yml file https://github.com/Arux-BTT/aeon/commit/129296d2629ac873496be054ad9e649f82887eb7
based on the official doc https://www.appveyor.com/docs/appveyor-yml/
there is a lot of unused options but i like to keep them ready-to-use
the unsuccessful output: https://ci.appveyor.com/project/Arux/aeon-0u95x
sr. member
Activity: 266
Merit: 250
I wonder whether in a next version Aeon blockchain could be splitted in smaller chunks, each one loaded into memory only when needed.
We are on the 6GB RAM needed tag....
legendary
Activity: 1449
Merit: 1001
With so many of the bigger altcoins going up like crazy right now, maybe AEON and some of the other lesser known ones will take off as well. I think it is in a position that it could grow if enough of the new speculators are made aware of it.

More exchanges are needed and for that LMDB probably.
sr. member
Activity: 1246
Merit: 274
With so many of the bigger altcoins going up like crazy right now, maybe AEON and some of the other lesser known ones will take off as well. I think it is in a position that it could grow if enough of the new speculators are made aware of it.
newbie
Activity: 26
Merit: 0
This coin is so undervalued right now.

Has there been any press or promotion of it lately?

Appreciate any links thrown my way.

newbie
Activity: 12
Merit: 0
Arux/Stoffu (or others):

Would it be possible to create an Appveyor.yml script so we can build the Aeon binaries ourselves using Appveyor.com? They already have Boost/Cmake. I'm not skilled enough to properly write the script myself, but here's an initial take:  Grin

Code:
version: 1.0.{build}
configuration: Release
platform: x64
before_build:

  cd C:\projects\aeon
  
  git checkout v0.9.12.0
  
  mkdir build
  
  cd build
  
  cmake -G "Visual Studio 14 2015 Win64" -DBOOST_ROOT=C:/Libraries/boost_1_63_0 -DBOOST_LIBRARYDIR=C:/Libraries/boost_1_63_0/lib64-msvc-14.0 ..

  ls

build:
  project: C:\projects\aeon\build\Project.sln
  parallel: true
  verbosity: minimal
after_build:
- cmd: 7z a aeon-0.9.12.0.zip C:\projects\aeon\build\src\release\aeond.exe C:\projects\aeon\build\src\release\simplewallet.exe
artifacts:
- path: aeon-0.9.12.0.zip

The above build is failing though: https://paste.fedoraproject.org/paste/LLPA9prvltZLI4~XkCUO8F5M1UNdIGYhyRLivL9gydE=

Maybe because Appveyor only has 4GB RAM...
newbie
Activity: 45
Merit: 0
Can confirm: It's all intended to be in the public domain.
Thanks!
Jump to: