The New AM wallet has been posted on Page 233 link below.
https://bitcointalk.org/index.php?topic=660938.msg9955338#msg9955338What is happening with coins stuck at Cryptsy? Since the wallet is down ("under maintenance") these coins can't be sent anywhere to swap.
FYI: I had just "received" coins which were just sent to a Cryptsy account!
Building the AeroME from source (GitHub) gives me the following error:
/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:
$ 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.
yep, leveldb needs to be built separate detect_build_platform. its in the make file TARGET_OS='uname -s' is the issue (for win toolchain). for UNIX its a matter of +x
Edit
Thanks for the input aezrazer