Hi Feathercoin Community
I am a new joiner here, but I already had a chat with Acid on Telegram, Hi Acid!
See you around.
Cheers
Nils
Best posts made by Reimelt
-
A brief "hello"
-
RE: feathercoind: undefined reference to `neoscrypt'
@bushstar Good morning Bushstar,
you know, what really happened is that I tried to build Feathercoin on Android.
And now it works! Thank you for the commands. I did exactly what you wrote and after around 5 hours of compiling feathercoind is running on my Moto Z Play. -
RE: feathercoind: undefined reference to `neoscrypt'
@wellenreiter Hi Wellenreiter, Lucas recommend the Edge wallet and I’m a happy user of that.
But to understand more of the code I wanted to carry the source code and executables always with me.
It’s a good feeling to just pull out your phone and it’s all there and it really works.
First I played around with picocoin. Then bitcoind with 12hrs compile time and now Feathercoin, which is much lighter than bitcoin as it compiles around 3 times faster. -
RE: feathercoind: undefined reference to `neoscrypt'
@wellenreiter Thank you Wellenreiter for your comment.
Yes of course I did both, like with building bitcoind before.
Perhaps neoscrypt compiling into a library like libneoscrypt.so could be included in the Feathercoin “package”. Would make things easier.
Because this is already the second machine where I can`t just build feathercoind out-of-the-box without errors while bitcoind works fine.
-
RE: feathercoind: undefined reference to `neoscrypt'
@reimelt I could finally fix it myself.
Solution: create a libneoscrypt.so with the following commands:
export C_INCLUDE_PATH=/home/user/Source/Feathercoin/src/crypto/:.
gcc -c -fPIC crypto/neoscrypt.c -o crypto/neoscrypt.o
cd crypto/
ar rcs neoscrypt.a neoscrypt.o -> create static library
gcc -shared neoscrypt.o -o neoscrypt.so -> convert into shared library
sudo cp neoscrypt.so /usr/lib/x86_64-linux-gnu/libneoscrypt.so -> make lib availableadd neoscrypt to Makefile: CRYPTO_LIBS = -lcrypto -lneoscrypt