Pages:
Author

Topic: Official XXXCoin Thread - Currenctly Under Development 27-June-2017 - page 8. (Read 25572 times)

legendary
Activity: 1162
Merit: 1000
Decentralizing Jesus on the Blockchain
is it the correct source because while compiling daemon im getting below error


github= https://github.com/devxxxcoin/xxxcoin


error:
Code:
pi@raspberrypi ~/xxxcoin/src $ make -f makefile.unix
g++ -c -O2 -msse2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DBOOST_SPIRIT_THREADSAFE -I/home/pi/xxxcoin/src -I/home/pi/xxxcoin/src/obj -DUSE_UPNP=0 -DUSE_IPV6=1 -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -MMD -MF obj/alert.d -o obj/alert.o alert.cpp
cc1plus: error: unrecognized command line option \u2018-msse2\u2019
makefile.unix:159: recipe for target 'obj/alert.o' failed
make: *** [obj/alert.o] Error 1
pi@raspberrypi ~/xxxcoin/src $




Also, in order to move past the above error create a file called "obj" in src and then recompile... I have installed this daemon 5 times and it compiles fine every time.


Regards
Team XXX - Team TTC

obj directory is already in the src; i tried to create a separate file obj in src but still same error. it seems that compiler wont able to create alert.o or any file in obj directory. any advise
sorry for the lack of my knowledge of linux


Make sure the permissions for obj are set to drwxr-xr-x to do this run this without the quotes "sudo chmod 777 xxxcoin/src/obj"

Also make sure you have the correct path specified to your obj folder

I would recommend running this to build, again without the quotes  "make -f makefile.unix USE_UPNP=1 USE_QRCODE=1 USE_IPV6=1"


Let me know how that goes.

If you still have issues then you are probably missing some dependencies, I will send you a couple of links to help you along if you still get stuck after this.

yes i guess i need those links pls bcoz its same error like before. when i created empty alert.o in obj folder it passed and stuck to the next file version.o
permissions were already set to 0777.
FYI im currently having 15 daemons on various Rpi but never came across this prob
hero member
Activity: 901
Merit: 501
It's a lifestyle
is it the correct source because while compiling daemon im getting below error


github= https://github.com/devxxxcoin/xxxcoin


error:
Code:
pi@raspberrypi ~/xxxcoin/src $ make -f makefile.unix
g++ -c -O2 -msse2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DBOOST_SPIRIT_THREADSAFE -I/home/pi/xxxcoin/src -I/home/pi/xxxcoin/src/obj -DUSE_UPNP=0 -DUSE_IPV6=1 -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -MMD -MF obj/alert.d -o obj/alert.o alert.cpp
cc1plus: error: unrecognized command line option \u2018-msse2\u2019
makefile.unix:159: recipe for target 'obj/alert.o' failed
make: *** [obj/alert.o] Error 1
pi@raspberrypi ~/xxxcoin/src $




Also, in order to move past the above error create a file called "obj" in src and then recompile... I have installed this daemon 5 times and it compiles fine every time.


Regards
Team XXX - Team TTC

obj directory is already in the src; i tried to create a separate file obj in src but still same error. it seems that compiler wont able to create alert.o or any file in obj directory. any advise
sorry for the lack of my knowledge of linux


Make sure the permissions for obj are set to drwxr-xr-x to do this run this without the quotes "sudo chmod 777 xxxcoin/src/obj"

Also make sure you have the correct path specified to your obj folder

I would recommend running this to build, again without the quotes  "make -f makefile.unix USE_UPNP=1 USE_QRCODE=1 USE_IPV6=1"


Let me know how that goes.

If you still have issues then you are probably missing some dependencies, I will send you a couple of links to help you along if you still get stuck after this.
legendary
Activity: 1162
Merit: 1000
Decentralizing Jesus on the Blockchain
is it the correct source because while compiling daemon im getting below error


github= https://github.com/devxxxcoin/xxxcoin


error:
Code:
pi@raspberrypi ~/xxxcoin/src $ make -f makefile.unix
g++ -c -O2 -msse2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DBOOST_SPIRIT_THREADSAFE -I/home/pi/xxxcoin/src -I/home/pi/xxxcoin/src/obj -DUSE_UPNP=0 -DUSE_IPV6=1 -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -MMD -MF obj/alert.d -o obj/alert.o alert.cpp
cc1plus: error: unrecognized command line option \u2018-msse2\u2019
makefile.unix:159: recipe for target 'obj/alert.o' failed
make: *** [obj/alert.o] Error 1
pi@raspberrypi ~/xxxcoin/src $




Also, in order to move past the above error create a file called "obj" in src and then recompile... I have installed this daemon 5 times and it compiles fine every time.


Regards
Team XXX - Team TTC

obj directory is already in the src; i tried to create a separate file obj in src but still same error. it seems that compiler wont able to create alert.o or any file in obj directory. any advise
sorry for the lack of my knowledge of linux
hero member
Activity: 901
Merit: 501
It's a lifestyle
is it the correct source because while compiling daemon im getting below error


github= https://github.com/devxxxcoin/xxxcoin


error:
Code:
pi@raspberrypi ~/xxxcoin/src $ make -f makefile.unix
g++ -c -O2 -msse2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DBOOST_SPIRIT_THREADSAFE -I/home/pi/xxxcoin/src -I/home/pi/xxxcoin/src/obj -DUSE_UPNP=0 -DUSE_IPV6=1 -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -MMD -MF obj/alert.d -o obj/alert.o alert.cpp
cc1plus: error: unrecognized command line option \u2018-msse2\u2019
makefile.unix:159: recipe for target 'obj/alert.o' failed
make: *** [obj/alert.o] Error 1
pi@raspberrypi ~/xxxcoin/src $




Hi Community,

We are still waiting for Da Source to update the xxx explorer "currently" on the wrong chain" as a result we find ourselves with a delay in progress. As soon as the daemon is updated we will be able to release the Mac update.


Also, in order to move past the above error create a file called "obj" in src and then recompile... I have installed this daemon 5 times and it compiles fine every time.


Regards
Team XXX - Team TTC
legendary
Activity: 1162
Merit: 1000
Decentralizing Jesus on the Blockchain
is it the correct source because while compiling daemon im getting below error


github= https://github.com/devxxxcoin/xxxcoin


error:
Code:
pi@raspberrypi ~/xxxcoin/src $ make -f makefile.unix
g++ -c -O2 -msse2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DBOOST_SPIRIT_THREADSAFE -I/home/pi/xxxcoin/src -I/home/pi/xxxcoin/src/obj -DUSE_UPNP=0 -DUSE_IPV6=1 -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -MMD -MF obj/alert.d -o obj/alert.o alert.cpp
cc1plus: error: unrecognized command line option \u2018-msse2\u2019
makefile.unix:159: recipe for target 'obj/alert.o' failed
make: *** [obj/alert.o] Error 1
pi@raspberrypi ~/xxxcoin/src $

hero member
Activity: 901
Merit: 501
It's a lifestyle
Will do - minting like crazy now after opening this wallet after such a long time Wink

How are your promotional plans for this one? I was supposed to promote them, once, but communications with the old team were, well, flaky? Smiley


Glad to see a team from whom I know they stick, no matter what!

♥ Devvie

Thanks man, than means a lot!

Please make sure you have downloaded the correct wallet and are on the correct chain.

Also please avoid moving any coins until you are 100% certain that you are on the correct chain.


Regdards

Team TTC  -  Team XXX
sr. member
Activity: 452
Merit: 250
Will do - minting like crazy now after opening this wallet after such a long time Wink

How are your promotional plans for this one? I was supposed to promote them, once, but communications with the old team were, well, flaky? Smiley


Glad to see a team from whom I know they stick, no matter what!

♥ Devvie
hero member
Activity: 901
Merit: 501
It's a lifestyle
any new updates of news of anykind


I will have a Mac wallet out for XxXcoin by the end of this weekend.

Apologies for the silence, Easter and cleaning up a backlog of other business that needed to be taken care of.

We are back on the Bull ready to ride!

Tittiecoin! Nice to see you here Smiley


Devvie
twitter.com/devnullius

Hey Devvie Smiley

Thanks, good to see you here to!

We will be updating the thread soon with future plans so keep checking back.


Team Tittiecoin - Team XxXCoin
sr. member
Activity: 452
Merit: 250
any new updates of news of anykind


I will have a Mac wallet out for XxXcoin by the end of this weekend.

Apologies for the silence, Easter and cleaning up a backlog of other business that needed to be taken care of.

We are back on the Bull ready to ride!

Tittiecoin! Nice to see you here Smiley


Devvie
twitter.com/devnullius
hero member
Activity: 901
Merit: 501
It's a lifestyle
any new updates of news of anykind


I will have a Mac wallet out for XxXcoin by the end of this weekend.

Apologies for the silence, Easter and cleaning up a backlog of other business that needed to be taken care of.

We are back on the Bull ready to ride!
hero member
Activity: 901
Merit: 501
It's a lifestyle


Send me a direct message with the details of Dev's and who is in charge of the cloin please.
full member
Activity: 396
Merit: 100
any new updates of news of anykind
hero member
Activity: 901
Merit: 501
It's a lifestyle
full member
Activity: 224
Merit: 100
★YoBit.Net★ 350+ Coins Exchange & Dice
Quote
We will be removing the following wallets on April 1st, 2015. Once removed, we will not be able to retrieve your funds. Please remove all coins ASAP. Note, that some of these coins have broken blockchains where we will not be able to send coins.

We have flagged and warned on these wallets for at least 30 days and no exceptions will be made once the wallets are removed.

XXX / XXXCoin

If you have coins in these wallets, please remove them by that date. Coin retreival after the removal date will not be possible. Thank you for your time and for trading at bittrex.com!
newbie
Activity: 28
Merit: 0
Ohhhh ! great news for me ! I think I lost all my XXXcoins at Bittrex. XXX came back.

Thanks for all !
full member
Activity: 224
Merit: 100
★YoBit.Net★ 350+ Coins Exchange & Dice

News about Cryptsy

I revived a response to my ticket, details below.

Thank you for the update and your dedication to XXXCoin.

Have there been any further updates with Cryptsy? TYIA.

Unfortunately not yet. We're reminding them regularly, but it takes for them some time to fix it.
As soon as it's done, we will announce it in this thread. Thanks for your patience.
member
Activity: 80
Merit: 10

News about Cryptsy

I revived a response to my ticket, details below.


Thank you for the update and your dedication to XXXCoin.

Have there been any further updates with Cryptsy? TYIA.
hero member
Activity: 901
Merit: 501
It's a lifestyle
Great News! I am aboard again!

Good to have you on board!!
hero member
Activity: 504
Merit: 500
Great News! I am aboard again!
Pages:
Jump to: