Post
Topic
Board Announcements (Altcoins)
Re: [ANN][AERO] Aero | 100% PoS | AeroME | Anonymous Sending | Gold Campaign!
by
aezrazer
on 05/01/2015, 14:04:14 UTC
Building the AeroME from source (GitHub) gives me the following error:

Code:
/tmp $ qmake && make -j4
...
g++: error: /tmp/am-aerome/src/leveldb/libleveldb.a: No such file or directory
g++: error: /tmp/am-aerome/src/leveldb/libmemenv.a: No such file or directory
Makefile:335: recipe for target 'aerome-qt' failed
make: *** [aerome-qt] Error 1
/tmp $

The qmake command succeeds, but the make fails.

I was able to solve it with the following commands, thanks to pricdx01's post:

Code:
$ cd am-aerome/src/leveldb/
$ chmod +x build_detect_platform
$ ./build_detect_platform build_config.mk ./
$ cd ..
$ make -f makefile.unix
$ cd ..
$ make

Now you will have aerome-qt in the am-aerome directory, and aeromed in am-aerome/src.