Author

Topic: [ANN] [XMG] MAGI | CPU mining | mPoW | mPoS | [MagiPay] - page 973. (Read 2375939 times)

full member
Activity: 206
Merit: 100
When I put qmake it says me that : Project MESSAGE: Building with UPNP support
Project MESSAGE: Building with IPv6 support
Project MESSAGE: FOUND host = armv7l
Project MESSAGE: Building with UPNP supportProject MESSAGE: Building with IPv6 supportProject MESSAGE: FOUND host = armv7lProject MESSAGE: Warning: unknown QT: widgets.

And when I put make it says me that : cd /home/pi/magi; /bin/sh share/genbuild.sh /home/pi/magi/build/build.h
g++ -c -pipe -fstack-protector-all --param ssp-buffer-size=1 -O2 -D_REENTRANT -fdiagnostics-show-option -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -Wstack-protector -DQT_WEBKIT -DQT_GUI -DBOOST_THREAD_USE_LIB -DBOOST_SPIRIT_THREADSAFE -DUSE_UPNP=1 -DSTATICLIB -DUSE_IPV6=1 -DHAVE_BUILD_INFO -DLINUX -DQT_NO_DEBUG -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++ -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtNetwork -I/usr/include/qt4/QtGui -I/usr/include/qt4 -Isrc -Isrc/json -Isrc/qt -Ibuild -Ibuild -o build/bitcoin.o src/qt/bitcoin.cpp
In file included from src/util.h:8:0,
                 from src/qt/bitcoingui.h:7,
                 from src/qt/bitcoin.cpp:4:
src/uint256.h:14:19: fatal error: gmpxx.h: Aucun fichier ou dossier de ce type
compilation terminated.
Makefile:704: recipe for target 'build/bitcoin.o' failed
make: *** [build/bitcoin.o] Error 1

I think there is a problem. Can you help me ?
appears libgmp needed for build.
try sudo apt-get install libgmp-dev and after try a rebuild.

digibob00 is correct - I totally missed libgmp because I use it for high precision math in one of the programs I deal with on a regular basis... I should have built the binaries on a clean build server to make sure everything worked as expected. Sorry for leading you astray, Erkallys.

On a semi-related note, my changes have been pushed to the official GitHub repo, so you should be able to pull the official source to build your wallet now.
member
Activity: 176
Merit: 10
I'm on Raspbian. The excute do not work. Nothing happens.

Please check out my GitHub page, https://github.com/feldenthorne/magi/tree/armv7l_official. You should be able to build the Qt wallet after entering the following:

Code:
sudo apt-get install qt4-qmake libqt4-dev build-essential libboost-dev libboost-system-dev libboost-filesystem-dev libboost-program-options-dev libboost-thread-dev libssl-dev libdb5.1++-dev git
git clone https://github.com/feldenthorne/magi
cd magi
git checkout armv7l_official
qmake
make

I recently made some changes that should fix builds for the RPi2, so you should be good.

Edit: Just updated the binary release on GitHub, but you should probably build it yourself because it's always better to be more cautious than less.
And here's my GitHub pull request from the official repo for the wary: https://github.com/magi-project/magi/pull/5.


When I put qmake it says me that : Project MESSAGE: Building with UPNP support
Project MESSAGE: Building with IPv6 support
Project MESSAGE: FOUND host = armv7l
Project MESSAGE: Building with UPNP supportProject MESSAGE: Building with IPv6 supportProject MESSAGE: FOUND host = armv7lProject MESSAGE: Warning: unknown QT: widgets.

And when I put make it says me that : cd /home/pi/magi; /bin/sh share/genbuild.sh /home/pi/magi/build/build.h
g++ -c -pipe -fstack-protector-all --param ssp-buffer-size=1 -O2 -D_REENTRANT -fdiagnostics-show-option -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -Wstack-protector -DQT_WEBKIT -DQT_GUI -DBOOST_THREAD_USE_LIB -DBOOST_SPIRIT_THREADSAFE -DUSE_UPNP=1 -DSTATICLIB -DUSE_IPV6=1 -DHAVE_BUILD_INFO -DLINUX -DQT_NO_DEBUG -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++ -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtNetwork -I/usr/include/qt4/QtGui -I/usr/include/qt4 -Isrc -Isrc/json -Isrc/qt -Ibuild -Ibuild -o build/bitcoin.o src/qt/bitcoin.cpp
In file included from src/util.h:8:0,
                 from src/qt/bitcoingui.h:7,
                 from src/qt/bitcoin.cpp:4:
src/uint256.h:14:19: fatal error: gmpxx.h: Aucun fichier ou dossier de ce type
compilation terminated.
Makefile:704: recipe for target 'build/bitcoin.o' failed
make: *** [build/bitcoin.o] Error 1

I think there is a problem. Can you help me ?


Hi erkallys,

appears libgmp needed for build.

try sudo apt-get install libgmp-dev and after try a rebuild.

Regards
hero member
Activity: 770
Merit: 500
You havent enought RAM Wink Create a big Swap File (1GB):

Quote
free
dd if=/dev/zero of=/var/swap.img bs=1024k count=1000
mkswap /var/swap.img
swapon /var/swap.img
free

and compile again...
legendary
Activity: 1120
Merit: 1004
I'm on Raspbian. The excute do not work. Nothing happens.

Please check out my GitHub page, https://github.com/feldenthorne/magi/tree/armv7l_official. You should be able to build the Qt wallet after entering the following:

Code:
sudo apt-get install qt4-qmake libqt4-dev build-essential libboost-dev libboost-system-dev libboost-filesystem-dev libboost-program-options-dev libboost-thread-dev libssl-dev libdb5.1++-dev git
git clone https://github.com/feldenthorne/magi
cd magi
git checkout armv7l_official
qmake
make

I recently made some changes that should fix builds for the RPi2, so you should be good.

Edit: Just updated the binary release on GitHub, but you should probably build it yourself because it's always better to be more cautious than less.
And here's my GitHub pull request from the official repo for the wary: https://github.com/magi-project/magi/pull/5.


When I put qmake it says me that : Project MESSAGE: Building with UPNP support
Project MESSAGE: Building with IPv6 support
Project MESSAGE: FOUND host = armv7l
Project MESSAGE: Building with UPNP supportProject MESSAGE: Building with IPv6 supportProject MESSAGE: FOUND host = armv7lProject MESSAGE: Warning: unknown QT: widgets.

And when I put make it says me that : cd /home/pi/magi; /bin/sh share/genbuild.sh /home/pi/magi/build/build.h
g++ -c -pipe -fstack-protector-all --param ssp-buffer-size=1 -O2 -D_REENTRANT -fdiagnostics-show-option -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -Wstack-protector -DQT_WEBKIT -DQT_GUI -DBOOST_THREAD_USE_LIB -DBOOST_SPIRIT_THREADSAFE -DUSE_UPNP=1 -DSTATICLIB -DUSE_IPV6=1 -DHAVE_BUILD_INFO -DLINUX -DQT_NO_DEBUG -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++ -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtNetwork -I/usr/include/qt4/QtGui -I/usr/include/qt4 -Isrc -Isrc/json -Isrc/qt -Ibuild -Ibuild -o build/bitcoin.o src/qt/bitcoin.cpp
In file included from src/util.h:8:0,
                 from src/qt/bitcoingui.h:7,
                 from src/qt/bitcoin.cpp:4:
src/uint256.h:14:19: fatal error: gmpxx.h: Aucun fichier ou dossier de ce type
compilation terminated.
Makefile:704: recipe for target 'build/bitcoin.o' failed
make: *** [build/bitcoin.o] Error 1

I think there is a problem. Can you help me ?
legendary
Activity: 1120
Merit: 1004

https://bitcointalksearch.org/topic/m.10453016
http://socialcrypto.net/blog/view/5215/xmg-magi-coin-video-contest-1-st-prize-2000-xmg-coins
http://bitcoingarden.tk/forum/index.php?topic=2779.0
https://cryptocointalk.com/topic/30476-magi-xmg-video-contest-launched/
http://cryptos.us/forum/giveaways/51-magi-xmg-video-contest-started-launched
http://www.m-talk.org/viewtopic.php?f=3&t=82&sid=6ee31a86f06c1bdf7d1408424e6180e3



If you sent in a video which satisfies the conditions (read contest text) you will receive 100 XMG.
For clarity, the video must meet the conditions and needs to be taken seriously in order to make a beautiful video for Magi (XMG)
If this is not the case you will not receive the 100 XMG.
This reward will be paid once per person.

Remember to sent in your Magi video and receive 100 XMG. And have a chance to win the 2000 XMG!

Think you are good with making video's.
Show us what you can do!

2000 XMG for best video.
1500 XMG for second best video.
750 XMG for third best video.

Bonus for the best video + 1000 XMG !!! Grin
So now the reward for Best video is 3000 XMG!!

Thanks for that! Smiley


Remember guys. Clock is ticking!


Deadline is March 22 20:00 hour CET! Smiley

I need to finish my translation !
legendary
Activity: 1750
Merit: 1005

https://bitcointalksearch.org/topic/m.10453016
http://socialcrypto.net/blog/view/5215/xmg-magi-coin-video-contest-1-st-prize-2000-xmg-coins
http://bitcoingarden.tk/forum/index.php?topic=2779.0
https://cryptocointalk.com/topic/30476-magi-xmg-video-contest-launched/
http://cryptos.us/forum/giveaways/51-magi-xmg-video-contest-started-launched
http://www.m-talk.org/viewtopic.php?f=3&t=82&sid=6ee31a86f06c1bdf7d1408424e6180e3



If you sent in a video which satisfies the conditions (read contest text) you will receive 100 XMG.
For clarity, the video must meet the conditions and needs to be taken seriously in order to make a beautiful video for Magi (XMG)
If this is not the case you will not receive the 100 XMG.
This reward will be paid once per person.

Remember to sent in your Magi video and receive 100 XMG. And have a chance to win the 2000 XMG!

Think you are good with making video's.
Show us what you can do!

2000 XMG for best video.
1500 XMG for second best video.
750 XMG for third best video.

Bonus for the best video + 1000 XMG !!! Grin
So now the reward for Best video is 3000 XMG!!

Thanks for that! Smiley


Remember guys. Clock is ticking!


Deadline is March 22 20:00 hour CET! Smiley
legendary
Activity: 1120
Merit: 1004
I'd love some coins if you're offering Tongue

9SPtQRjWjPwrKEmnxAzQPz6wDJrk6HZX3r

been mining. mined 2 coins..

Only two? Which pool are you on? Come join us on http://xmgpool.cf/ and we might be able to do something about that Smiley

There is a lot of Magic in the air at the moment and this XMG giveaway virus is very difficult to shake off.

Trust me on this Wink


I mined just 3.7 coins with 60 KH/s average ! I'm on Suprnova. Normal ? Also my RPi booted, I will try the instructions that were told to me.
legendary
Activity: 1750
Merit: 1005
This poll ...

https://bitcointalksearch.org/topic/what-cryptocurrency-do-you-have-the-most-faith-in-the-long-term-915569

... is putting us right up there with the most well-known names. Gotta be good.

We are already famous. It is just that not enough people know it yet.

Onwards and upwards Smiley

Noticed that also. Some people never heard of Magi yet!!
We have to think about huge international social media campaign.

Other question: Does anybody has an idea how to paste the original Magi thread (OP)
on www.cryptocointalk We have a Bulgarian Magi thread there but still no English version.
They use another forum programm so copy paste does not work very good!
Ideas or tips are welcome!!
legendary
Activity: 1190
Merit: 1009
Coin of the Magi!
One problem I have with either Unicode or HTML codes is that they may not display correctly. Quite often I try things out and get something like ♫ instead of what I expected.
True. I've seen Ӎ, ᵯ are not shown properly on my iphone, and ⅀ has a different look.
sr. member
Activity: 350
Merit: 250
Mining Co-operative
This poll ...

https://bitcointalksearch.org/topic/what-cryptocurrency-do-you-have-the-most-faith-in-the-long-term-915569

... is putting us right up there with the most well-known names. Gotta be good.

We are already famous. It is just that not enough people know it yet.

Onwards and upwards Smiley
legendary
Activity: 1750
Merit: 1005
Nice thanks amigo!
newbie
Activity: 14
Merit: 0
legendary
Activity: 1750
Merit: 1005
lightsplasher made a review on magi posted in his blog, he is currently one of the m-face members:

http://www.lightsplasher.com/2015/magi-coin-review/

I suggest community donates him for the efforts he has put in. It's a nice reading of his point of view with respect to the cryptocoin and magi.

lightsplasher's XMG address as posted in his blog: 9Romi8ZpevAwcu218gNsuCrv8i9Li6oarj

Thank you Joe, I already received a donation, I bet I know from who.  Wink

The recent postings have been really fun to read, I was laughing and laughing the other day with the Magi coin donation virus spreading good cheer, and the pimp my miner release with the fuzzy dice and all. Cheesy

Nice blog Lightsplasher! Well done amigo.
It's was also easy to read and thats good!
legendary
Activity: 1750
Merit: 1005
sr. member
Activity: 350
Merit: 250
Mining Co-operative
pimp my miner

Yeah I'm still laughing at that one. My new Autominer V4 will incorporate a furry dashboard Cheesy

Edit: Not lol.
sr. member
Activity: 371
Merit: 250
lightsplasher made a review on magi posted in his blog, he is currently one of the m-face members:

http://www.lightsplasher.com/2015/magi-coin-review/

I suggest community donates him for the efforts he has put in. It's a nice reading of his point of view with respect to the cryptocoin and magi.

lightsplasher's XMG address as posted in his blog: 9Romi8ZpevAwcu218gNsuCrv8i9Li6oarj

Thank you Joe, I already received a donation, I bet I know from who.  Wink

The recent postings have been really fun to read, I was laughing and laughing the other day with the Magi coin donation virus spreading good cheer, and the pimp my miner release with the fuzzy dice and all. Cheesy
sr. member
Activity: 350
Merit: 250
Mining Co-operative
One problem I have with either Unicode or HTML codes is that they may not display correctly. Quite often I try things out and get something like ♫ instead of what I expected.
legendary
Activity: 1568
Merit: 1000
Twitter @Acimirov
I am thinking to make a poll post regarding voting for currency sign for XMG soon:

One thing to mention, it'll be far better if we can select a Unicode character that will allow us to use it anywhere. Let me be aware if you think the other options (image, code etc) that can be easily used too.

1st option: existing Unicode character

2nd option: if a symbol other than Unicode character is selected, we can use image / html code "temporarily"; but finally it shall be into the Unicode character table if we seriously push XMG into this space. I'm not sure how difficult it is yet.

Please search Unicode character candidate for XMG; reward is available.

Example of a random search I just did quickly:  
ᵯ ₥



Maybe: Ṃ Ḿ ₰
newbie
Activity: 14
Merit: 0
member
Activity: 84
Merit: 10
Magi special for kids but this Magi special for us.. Smiley
Jump to: