github= https://github.com/devxxxcoin/xxxcoin
error:
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