Post
Topic
Board Announcements (Altcoins)
Re: [ANN] FAILCoin | NEW BETA WALLETS! | EmpoEx | Cryptocloudhosting
by
sanitarium616
on 26/02/2016, 17:42:18 UTC
i've managed to get the failcoin wallet to start installing in linux from the source code on github but had to add the obj folder in src.
would it be possible to add it to the code

edit:
it failed due to msse2 isnt compatible with the pi,
after changing the code with:
     DEFINES += HAVE_BUILD_INFO
 }
 
-# If we have an arm device, we can't use sse2, so define as thumb
+# If we have an ARM device, we can't use SSE2 instructions, so don't try to use them
 # Because of scrypt_mine.cpp, we also have to add a compile
 #     flag that states we *really* don't have SSE
-# Otherwise, assume sse2 exists
-!equals($$QMAKE_HOST.arch, armv7l) {
-    message(FOUND host = $$QMAKE_HOST.arch)
-    QMAKE_CXXFLAGS += -DNOSSE
+QMAKE_XCPUARCH = $$QMAKE_HOST.arch
+equals(QMAKE_XCPUARCH, armv7l) {
+    message(Building without SSE2 support)
+   QMAKE_CXXFLAGS += -DNOSSE
+    QMAKE_CFLAGS += -DNOSSE
+}
+else:equals(QMAKE_XCPUARCH, armv6l) {
+    message(Building without SSE2 support)
+   QMAKE_CXXFLAGS += -DNOSSE
     QMAKE_CFLAGS += -DNOSSE
 }
 else {
+    message(Building with SSE2 support)
     QMAKE_CXXFLAGS += -msse2
     QMAKE_CFLAGS += -msse2
 }

but now i get:
src/qt/bitcoingui.h:4:23: fatal error: QMainWindow: no such file or directory
 #include
                                    ^
compilation terminated.
makefile:890: recipe for target 'build/bitcoin.o'
make: *** [buildbitcoin.o] error 1


how can i get past this error
thanks
Sani