Pages:
Author

Topic: VLT | Veltor | Donar Network | Minimalism. - page 71. (Read 141330 times)

legendary
Activity: 2688
Merit: 1240
Forget the CPU miner, here is the GPU Miner (NVIDIA):

https://github.com/ocminer/ccminer-veltor

Again, use "-a sib" for veltor

Nice!
Too bad I only have two AMDs...
Any chance you could make one for AMD gpu? Smiley

J.V.

AMD is not so easy as NVIDIA unfortunately and I yet have to implement something else first, but i'll look later.
Is there a AMD Sibcoin miner around ?

Forget the CPU miner, here is the GPU Miner (NVIDIA):

https://github.com/ocminer/ccminer-veltor

Again, use "-a sib" for veltor

please windows bin


Anyone able to compile my miner for windows ?
hero member
Activity: 980
Merit: 1000
.
Forget the CPU miner, here is the GPU Miner (NVIDIA):

https://github.com/ocminer/ccminer-veltor

Again, use "-a sib" for veltor

please windows bin
full member
Activity: 156
Merit: 100
I'm an artist, my paint is code
Forget the CPU miner, here is the GPU Miner (NVIDIA):

https://github.com/ocminer/ccminer-veltor

Again, use "-a sib" for veltor

Nice!
Too bad I only have two AMDs...
Any chance you could make one for AMD gpu? Smiley

J.V.
legendary
Activity: 2688
Merit: 1240
Forget the CPU miner, here is the GPU Miner (NVIDIA):

https://github.com/ocminer/ccminer-veltor

Again, use "-a sib" for veltor
full member
Activity: 174
Merit: 100
WHAT'S THERE TO KNOW ?
It's weird because PoolersCPU miner compiles on the same machine with no problems
full member
Activity: 174
Merit: 100
WHAT'S THERE TO KNOW ?
When I try to compile ocminers CPU Miner for Veltor on Ubuntu I get this... How to remedy ?

Code:
user@user-OptiPlex-9010:~/cpuminer-veltor$ make
make  all-recursive
make[1]: Entering directory `/home/user/cpuminer-veltor'
Making all in compat
make[2]: Entering directory `/home/user/cpuminer-veltor/compat'
make[3]: Entering directory `/home/user/cpuminer-veltor/compat'
make[3]: Nothing to be done for `all-am'.
make[3]: Leaving directory `/home/user/cpuminer-veltor/compat'
make[2]: Leaving directory `/home/user/cpuminer-veltor/compat'
make[2]: Entering directory `/home/user/cpuminer-veltor'
gcc -std=gnu99 -DHAVE_CONFIG_H -I.  -fno-strict-aliasing  -I.  -Wno-pointer-sign -Wno-pointer-to-int-cast   -O3  -MT cpuminer-api.o -MD -MP -MF .deps/cpuminer-api.Tpo -c -o cpuminer-api.o `test -f 'api.c' || echo './'`api.c
api.c:318:68: fatal error: compat/curl-for-windows/openssl/openssl/crypto/sha/sha.h: No such file or directory
 #include "compat/curl-for-windows/openssl/openssl/crypto/sha/sha.h"
                                                                    ^
compilation terminated.
make[2]: *** [cpuminer-api.o] Error 1
make[2]: Leaving directory `/home/user/cpuminer-veltor'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/user/cpuminer-veltor'
make: *** [all] Error 2




Hmm, is that windows or linux ?

It almost looks like you're missing openssl

Linux, I tried this I found posted by you and still nothing

open the "Makefile" and search for "LDADD", change:

LDADD =  -L/usr/lib/x86_64-linux-gnu -lcurl -ljansson -lpthread -lssl -lcrypto


EDIT:

Actually this should also work on Linux:

./autogen.sh && ./configure --with-curl --with-crypto CFLAGS="-march=native" && make clean && make -j2


Hmm really sorry, my cpuminer is just a normal fork from cpuminer-multi.. It compiles fine for me with:

./configure CFLAGS="-march=native" --with-crypto --with-curl

maybe make a "make distclean" before trying to recompile.



Just noticed this part saying "missing" is that a problem ?

Code:
user@user-OptiPlex-9010:~/cpuminer-veltor$ ./autogen.sh
configure.ac:15: installing './compile'
configure.ac:4: installing './config.guess'
configure.ac:4: installing './config.sub'
configure.ac:9: installing './install-sh'
configure.ac:9: installing './missing'
Makefile.am: installing './depcomp'
legendary
Activity: 2688
Merit: 1240
When I try to compile ocminers CPU Miner for Veltor on Ubuntu I get this... How to remedy ?

Code:
user@user-OptiPlex-9010:~/cpuminer-veltor$ make
make  all-recursive
make[1]: Entering directory `/home/user/cpuminer-veltor'
Making all in compat
make[2]: Entering directory `/home/user/cpuminer-veltor/compat'
make[3]: Entering directory `/home/user/cpuminer-veltor/compat'
make[3]: Nothing to be done for `all-am'.
make[3]: Leaving directory `/home/user/cpuminer-veltor/compat'
make[2]: Leaving directory `/home/user/cpuminer-veltor/compat'
make[2]: Entering directory `/home/user/cpuminer-veltor'
gcc -std=gnu99 -DHAVE_CONFIG_H -I.  -fno-strict-aliasing  -I.  -Wno-pointer-sign -Wno-pointer-to-int-cast   -O3  -MT cpuminer-api.o -MD -MP -MF .deps/cpuminer-api.Tpo -c -o cpuminer-api.o `test -f 'api.c' || echo './'`api.c
api.c:318:68: fatal error: compat/curl-for-windows/openssl/openssl/crypto/sha/sha.h: No such file or directory
 #include "compat/curl-for-windows/openssl/openssl/crypto/sha/sha.h"
                                                                    ^
compilation terminated.
make[2]: *** [cpuminer-api.o] Error 1
make[2]: Leaving directory `/home/user/cpuminer-veltor'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/user/cpuminer-veltor'
make: *** [all] Error 2




Hmm, is that windows or linux ?

It almost looks like you're missing openssl

Linux, I tried this I found posted by you and still nothing

open the "Makefile" and search for "LDADD", change:

LDADD =  -L/usr/lib/x86_64-linux-gnu -lcurl -ljansson -lpthread -lssl -lcrypto


EDIT:

Actually this should also work on Linux:

./autogen.sh && ./configure --with-curl --with-crypto CFLAGS="-march=native" && make clean && make -j2


Hmm really sorry, my cpuminer is just a normal fork from cpuminer-multi.. It compiles fine for me with:

./configure CFLAGS="-march=native" --with-crypto --with-curl

maybe make a "make distclean" before trying to recompile.

full member
Activity: 174
Merit: 100
WHAT'S THERE TO KNOW ?
When I try to compile ocminers CPU Miner for Veltor on Ubuntu I get this... How to remedy ?

Code:
user@user-OptiPlex-9010:~/cpuminer-veltor$ make
make  all-recursive
make[1]: Entering directory `/home/user/cpuminer-veltor'
Making all in compat
make[2]: Entering directory `/home/user/cpuminer-veltor/compat'
make[3]: Entering directory `/home/user/cpuminer-veltor/compat'
make[3]: Nothing to be done for `all-am'.
make[3]: Leaving directory `/home/user/cpuminer-veltor/compat'
make[2]: Leaving directory `/home/user/cpuminer-veltor/compat'
make[2]: Entering directory `/home/user/cpuminer-veltor'
gcc -std=gnu99 -DHAVE_CONFIG_H -I.  -fno-strict-aliasing  -I.  -Wno-pointer-sign -Wno-pointer-to-int-cast   -O3  -MT cpuminer-api.o -MD -MP -MF .deps/cpuminer-api.Tpo -c -o cpuminer-api.o `test -f 'api.c' || echo './'`api.c
api.c:318:68: fatal error: compat/curl-for-windows/openssl/openssl/crypto/sha/sha.h: No such file or directory
 #include "compat/curl-for-windows/openssl/openssl/crypto/sha/sha.h"
                                                                    ^
compilation terminated.
make[2]: *** [cpuminer-api.o] Error 1
make[2]: Leaving directory `/home/user/cpuminer-veltor'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/user/cpuminer-veltor'
make: *** [all] Error 2




Hmm, is that windows or linux ?

It almost looks like you're missing openssl

Linux, I tried this I found posted by you and still nothing

open the "Makefile" and search for "LDADD", change:

LDADD =  -L/usr/lib/x86_64-linux-gnu -lcurl -ljansson -lpthread -lssl -lcrypto


EDIT:

Actually this should also work on Linux:

./autogen.sh && ./configure --with-curl --with-crypto CFLAGS="-march=native" && make clean && make -j2
legendary
Activity: 2688
Merit: 1240
When I try to compile ocminers CPU Miner for Veltor on Ubuntu I get this... How to remedy ?

Code:
user@user-OptiPlex-9010:~/cpuminer-veltor$ make
make  all-recursive
make[1]: Entering directory `/home/user/cpuminer-veltor'
Making all in compat
make[2]: Entering directory `/home/user/cpuminer-veltor/compat'
make[3]: Entering directory `/home/user/cpuminer-veltor/compat'
make[3]: Nothing to be done for `all-am'.
make[3]: Leaving directory `/home/user/cpuminer-veltor/compat'
make[2]: Leaving directory `/home/user/cpuminer-veltor/compat'
make[2]: Entering directory `/home/user/cpuminer-veltor'
gcc -std=gnu99 -DHAVE_CONFIG_H -I.  -fno-strict-aliasing  -I.  -Wno-pointer-sign -Wno-pointer-to-int-cast   -O3  -MT cpuminer-api.o -MD -MP -MF .deps/cpuminer-api.Tpo -c -o cpuminer-api.o `test -f 'api.c' || echo './'`api.c
api.c:318:68: fatal error: compat/curl-for-windows/openssl/openssl/crypto/sha/sha.h: No such file or directory
 #include "compat/curl-for-windows/openssl/openssl/crypto/sha/sha.h"
                                                                    ^
compilation terminated.
make[2]: *** [cpuminer-api.o] Error 1
make[2]: Leaving directory `/home/user/cpuminer-veltor'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/user/cpuminer-veltor'
make: *** [all] Error 2




Hmm, is that windows or linux ?

It almost looks like you're missing openssl
full member
Activity: 174
Merit: 100
WHAT'S THERE TO KNOW ?
When I try to compile ocminers CPU Miner for Veltor on Ubuntu I get this... How to remedy ?

Code:
user@user-OptiPlex-9010:~/cpuminer-veltor$ make
make  all-recursive
make[1]: Entering directory `/home/user/cpuminer-veltor'
Making all in compat
make[2]: Entering directory `/home/user/cpuminer-veltor/compat'
make[3]: Entering directory `/home/user/cpuminer-veltor/compat'
make[3]: Nothing to be done for `all-am'.
make[3]: Leaving directory `/home/user/cpuminer-veltor/compat'
make[2]: Leaving directory `/home/user/cpuminer-veltor/compat'
make[2]: Entering directory `/home/user/cpuminer-veltor'
gcc -std=gnu99 -DHAVE_CONFIG_H -I.  -fno-strict-aliasing  -I.  -Wno-pointer-sign -Wno-pointer-to-int-cast   -O3  -MT cpuminer-api.o -MD -MP -MF .deps/cpuminer-api.Tpo -c -o cpuminer-api.o `test -f 'api.c' || echo './'`api.c
api.c:318:68: fatal error: compat/curl-for-windows/openssl/openssl/crypto/sha/sha.h: No such file or directory
 #include "compat/curl-for-windows/openssl/openssl/crypto/sha/sha.h"
                                                                    ^
compilation terminated.
make[2]: *** [cpuminer-api.o] Error 1
make[2]: Leaving directory `/home/user/cpuminer-veltor'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/user/cpuminer-veltor'
make: *** [all] Error 2


sr. member
Activity: 392
Merit: 252
what algo isit
legendary
Activity: 2688
Merit: 1240
Pool:

https://veltor.suprnova.cc

Miner:

https://github.com/ocminer/cpuminer-veltor

use "-a sib" for veltor (I just hacked the sib algo for use with veltor).

hero member
Activity: 756
Merit: 500
Instructions to compile Linux Qt Wallet not server ?
full member
Activity: 156
Merit: 100
I'm an artist, my paint is code
addnodes would be a good start Smiley

Let there be Nodes:
Add the following in your Veltor.conf file:

Code:
addnode=45.32.236.94
addnode=47.88.188.91
addnode=52.42.180.141
addnode=52.90.105.10
addnode=52.59.129.232

If you don't have one, just create one.

OR run
Code:
addnode add
In the command one by one.

Am working on a windows wallet, still got some compiling errors.

J.V.
legendary
Activity: 2688
Merit: 1240
addnodes would be a good start Smiley
hero member
Activity: 980
Merit: 1000
.
any miner for this coin cpu,gpu + config , please help thanks .
hero member
Activity: 756
Merit: 500
Move along everyone - move along. nothing to see.

Exactly that is what it is hahaha
legendary
Activity: 1218
Merit: 1002
Supporting DMD, ERC & PIO
Move along everyone - move along. nothing to see.
member
Activity: 112
Merit: 10
thefudpool.com|[email protected]
well i dont have the environment setup to cross compile but i can set it up but it will take about 3 hours to build all the files
hero member
Activity: 756
Merit: 500
i recompiled on my big dedicated machine running ubuntu 14.04 64bit

Code:
{
    "version" : 1000000,
    "protocolversion" : 70002,
    "walletversion" : 60000,
    "balance" : 0.00000000,
    "blocks" : 117,
    "timeoffset" : 0,
    "connections" : 1,
    "proxy" : "",
    "difficulty" : 0.33380193,
    "testnet" : false,
    "keypoololdest" : 1471053762,
    "keypoolsize" : 101,
    "paytxfee" : 0.00000000,
    "mininput" : 0.00001000,
    "errors" : ""
}


did you
Code:
cd veltor/veltor/src
then do
Code:
make -f makefile.unix USE_UPNP=


Thats for a server not a Qt.
Pages:
Jump to: