Pages:
Author

Topic: [ANN] cpuminer-multi v1.3.5 (Linux + Windows VStudio/MinGW64) GPL Open Source (Read 378697 times)

newbie
Activity: 1
Merit: 0
I tried to compile this with Visual Studio 2022 using the V143 tools.  I got 65 errors and 41 warnings.  A lot of things like:

Error >> 'timespec': 'struct' type redefinition (compiling source file api.c)

Warning >> '=': conversion from 'SOCKET' to 'int', possible loss of data

Any suggestions?

TIA
newbie
Activity: 2
Merit: 0
Please add ARM support from Linux branch to master branch, hope all forked versions to change their fork to Linux branch to make all support ARM
https://www.thepolyglotdeveloper.com/2018/01/use-raspberry-pi-cpu-miner-mine-altcoins/
I tried it with ARM and it work ok, good hashrate but submitted shares are very loow needed to be optimized
newbie
Activity: 3
Merit: 0
PLz help, how to define is my BFGminer started to work? I saw somw numbers changing and went to sleep and when i woked up, nothing was mined. I connected to two pools and connection was
newbie
Activity: 1
Merit: 0
Is there an newer guide for linux? im on pop os 20.10. i want to try and mine some dogecoin
full member
Activity: 1386
Merit: 220
HI, i am looking for a cpu miner for YewpowerTide algorithm, but i am unsure if i did it with a regular cpu miner what the parameters are for the A and R values? -algo yespower R= A=
Can somebody maybe assist me here with this please?
Windows user

You can try cpuminer-opt but you'll have to get the parameter values from the coin's specifications.

https://github.com/JayDDee/cpuminer-opt/wiki/Supported--Algorithms


newbie
Activity: 84
Merit: 0
HI, i am looking for a cpu miner for YewpowerTide algorithm, but i am unsure if i did it with a regular cpu miner what the parameters are for the A and R values? -algo yespower R= A=
Can somebody maybe assist me here with this please?
Windows user
newbie
Activity: 1
Merit: 0
I just wanted to compliment tpruvot on cpuminer-multi.

Just following the instructions, i've been able to compile and run on  Raspberry Pi Zero, with additional wifi dongle. latest stable Debian (server, no gui), Ubuntu (same), and now TinyCore (both 32 and 64 bit).
Tinycore was the trickiest, trying to find out if they had the libraries needed, but ultimately they did.

Awesome that i could deploy on so many platforms fairly easily.

newbie
Activity: 3
Merit: 0
Hi,

how can I configure the --no-color option in a config.json file?

Thanks,
Chris
member
Activity: 183
Merit: 65
Hi, i'm trying to mine with my Raspberry Pi and i have several problems:
1. Monero mining don't work, because RandomX isn't supportet
2. Litecoin mining don't work, i always get the message 'Stratum connection failed: Failed to connect to ltc.pool.minergate.com port 3336: Connection refused' or sometimes it's 'Connection timed out'
3. Ethereum mining don't work, because the ethash algorithm is somehow not supportet

Does someone know where the issue by the second point is?
When i try it with Monero with the old algorithm, it works without any problem. But i think it won't mine something with the old algorithm.

Hello Dissi,
Regarding your problem, you can find the answer here: https://minergate.com/service-monitor.

Many thanks Smiley will Litecoin be available soon or will it stay offline forever?
newbie
Activity: 125
Merit: 0
Hi, i'm trying to mine with my Raspberry Pi and i have several problems:
1. Monero mining don't work, because RandomX isn't supportet
2. Litecoin mining don't work, i always get the message 'Stratum connection failed: Failed to connect to ltc.pool.minergate.com port 3336: Connection refused' or sometimes it's 'Connection timed out'
3. Ethereum mining don't work, because the ethash algorithm is somehow not supportet

Does someone know where the issue by the second point is?
When i try it with Monero with the old algorithm, it works without any problem. But i think it won't mine something with the old algorithm.

Hello Dissi,
Regarding your problem, you can find the answer here: https://minergate.com/service-monitor.
member
Activity: 183
Merit: 65
Hi, i'm trying to mine with my Raspberry Pi and i have several problems:
1. Monero mining don't work, because RandomX isn't supportet
2. Litecoin mining don't work, i always get the message 'Stratum connection failed: Failed to connect to ltc.pool.minergate.com port 3336: Connection refused' or sometimes it's 'Connection timed out'
3. Ethereum mining don't work, because the ethash algorithm is somehow not supportet

Does someone know where the issue by the second point is?
When i try it with Monero with the old algorithm, it works without any problem. But i think it won't mine something with the old algorithm.
newbie
Activity: 1
Merit: 0
Please add RandomX algorithm Cry
legendary
Activity: 1470
Merit: 1114
Hi, i want to mine Monero wothz a Raspberry Pi. A tutorial i found works with your CPUMiner-Multi. But when i insert this code:
Code:
sudo ./configure CFLAGS="-Ofast -mtune=cortex-a53 -mcpu=cortex-a53 -mfloat-abi=hard -mfpu=neon-fp-armv8 -mneon-for-64bits" CXXFLAGS="-Ofast -mtune=cortex-a53 -mcpu=cortex-a53 -mfloat-abi=hard -mfpu=neon-fp-armv8 -mneon-for-64bits"  --with-crypto --with-curl

It gives me an error: C Compiler cannot create executables

Can you please help me? I'm working with a Raspberry Pi 4 Modell B

Two things:

1. Monero just forked to a new algo called RandomX, the old miners won't work anymore.

2. The compile error is probably your configure command. It's usually best to start with the
defaults: ./build.sh and only mess with tuning options if that fails or you know what you're doing.



It wont work with RandomX, i get the information: Unkown algo parameter 'RandomX'. Also if i write it in lowercase. But with the cryptonight alogrithm works...

Again, Monero doesn't use cryptonight anymore. If you're mining cryptonight you either aren't mining Monero
or you're mining on an old wallet on an invalid fork.

Some cryptonight variations are supported by cpuminer-multi, but not all and definitely not for Monero.

To mine Monero you need a RandomX miner. There are a lot of discussion threads about it. This isn't one of them.
member
Activity: 183
Merit: 65
Hi, i want to mine Monero wothz a Raspberry Pi. A tutorial i found works with your CPUMiner-Multi. But when i insert this code:
Code:
sudo ./configure CFLAGS="-Ofast -mtune=cortex-a53 -mcpu=cortex-a53 -mfloat-abi=hard -mfpu=neon-fp-armv8 -mneon-for-64bits" CXXFLAGS="-Ofast -mtune=cortex-a53 -mcpu=cortex-a53 -mfloat-abi=hard -mfpu=neon-fp-armv8 -mneon-for-64bits"  --with-crypto --with-curl

It gives me an error: C Compiler cannot create executables

Can you please help me? I'm working with a Raspberry Pi 4 Modell B

Two things:

1. Monero just forked to a new algo called RandomX, the old miners won't work anymore.

2. The compile error is probably your configure command. It's usually best to start with the
defaults: ./build.sh and only mess with tuning options if that fails or you know what you're doing.



It wont work with RandomX, i get the information: Unkown algo parameter 'RandomX'. Also if i write it in lowercase. But with the cryptonight alogrithm works...
member
Activity: 183
Merit: 65
Hi, i want to mine Monero wothz a Raspberry Pi. A tutorial i found works with your CPUMiner-Multi. But when i insert this code:
Code:
sudo ./configure CFLAGS="-Ofast -mtune=cortex-a53 -mcpu=cortex-a53 -mfloat-abi=hard -mfpu=neon-fp-armv8 -mneon-for-64bits" CXXFLAGS="-Ofast -mtune=cortex-a53 -mcpu=cortex-a53 -mfloat-abi=hard -mfpu=neon-fp-armv8 -mneon-for-64bits"  --with-crypto --with-curl

It gives me an error: C Compiler cannot create executables

Can you please help me? I'm working with a Raspberry Pi 4 Modell B

Two things:

1. Monero just forked to a new algo called RandomX, the old miners won't work anymore.

2. The compile error is probably your configure command. It's usually best to start with the
defaults: ./build.sh and only mess with tuning options if that fails or you know what you're doing.



Ok, thanks
legendary
Activity: 1470
Merit: 1114
Hi, i want to mine Monero wothz a Raspberry Pi. A tutorial i found works with your CPUMiner-Multi. But when i insert this code:
Code:
sudo ./configure CFLAGS="-Ofast -mtune=cortex-a53 -mcpu=cortex-a53 -mfloat-abi=hard -mfpu=neon-fp-armv8 -mneon-for-64bits" CXXFLAGS="-Ofast -mtune=cortex-a53 -mcpu=cortex-a53 -mfloat-abi=hard -mfpu=neon-fp-armv8 -mneon-for-64bits"  --with-crypto --with-curl

It gives me an error: C Compiler cannot create executables

Can you please help me? I'm working with a Raspberry Pi 4 Modell B

Two things:

1. Monero just forked to a new algo called RandomX, the old miners won't work anymore.

2. The compile error is probably your configure command. It's usually best to start with the
defaults: ./build.sh and only mess with tuning options if that fails or you know what you're doing.

member
Activity: 183
Merit: 65
Hi, i want to mine Monero wothz a Raspberry Pi. A tutorial i found works with your CPUMiner-Multi. But when i insert this code:
Code:
sudo ./configure CFLAGS="-Ofast -mtune=cortex-a53 -mcpu=cortex-a53 -mfloat-abi=hard -mfpu=neon-fp-armv8 -mneon-for-64bits" CXXFLAGS="-Ofast -mtune=cortex-a53 -mcpu=cortex-a53 -mfloat-abi=hard -mfpu=neon-fp-armv8 -mneon-for-64bits"  --with-crypto --with-curl

It gives me an error: C Compiler cannot create executables

Can you please help me? I'm working with a Raspberry Pi 4 Modell B
legendary
Activity: 1470
Merit: 1114
Hello folks!


I'm trying to install the miner on my Pine Rock64 but have problem with MAKE.
I did use sudo MAKE and then I get this...


gcc -DHAVE_CONFIG_H -I.  -Iyes/include -Iyes/include -fno-strict-aliasing  -I. -Iyes/include -Iyes/include -Wno-pointer-sign -Wno-pointer-to-int-cast -DNOASM  -D__arm__ -Ofast -march=native  -Iyes/include -Iyes/include -MT algo/cpuminer-rainforest.o -MD -MP -MF algo/.deps/cpuminer-rainforest.Tpo -c -o algo/cpuminer-rainforest.o `test -f 'algo/rainforest.c' || echo './'`algo/rainforest.c
algo/rainforest.c: In function 'rf_crc32_32':
algo/rainforest.c:411:7: error: 'rf_crc32_table' undeclared (first use in this function); did you mean 'rf_crc32_32'?
   crc=rf_crc32_table[crc&0xff]^(crc>>Cool;
       ^~~~~~~~~~~~~~
       rf_crc32_32
algo/rainforest.c:411:7: note: each undeclared identifier is reported only once for each function it appears in
algo/rainforest.c: In function 'rf_add64_crc32':
algo/rainforest.c:461:7: error: 'rf_crc32_table' undeclared (first use in this function); did you mean 'rf_crc32_32'?
   crc=rf_crc32_table[crc&0xff]^(crc>>Cool;
       ^~~~~~~~~~~~~~
       rf_crc32_32
Makefile:2320: recipe for target 'algo/cpuminer-rainforest.o' failed
make[2]: *** [algo/cpuminer-rainforest.o] Error 1
make[2]: Leaving directory '/opt/crypto/cpuminer-multi'
Makefile:2805: recipe for target 'all-recursive' failed
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory '/opt/crypto/cpuminer-multi'
Makefile:590: recipe for target 'all' failed
make: *** [all] Error 2




Any ideas to fix this problem?!  Huh



This might help...

https://stackoverflow.com/questions/37066261/why-is-arm-feature-crc32-not-being-defined-by-the-compiler
newbie
Activity: 1
Merit: 0
Hello folks!


I'm trying to install the miner on my Pine Rock64 but have problem with MAKE.
I did use sudo MAKE and then I get this...


gcc -DHAVE_CONFIG_H -I.  -Iyes/include -Iyes/include -fno-strict-aliasing  -I. -Iyes/include -Iyes/include -Wno-pointer-sign -Wno-pointer-to-int-cast -DNOASM  -D__arm__ -Ofast -march=native  -Iyes/include -Iyes/include -MT algo/cpuminer-rainforest.o -MD -MP -MF algo/.deps/cpuminer-rainforest.Tpo -c -o algo/cpuminer-rainforest.o `test -f 'algo/rainforest.c' || echo './'`algo/rainforest.c
algo/rainforest.c: In function 'rf_crc32_32':
algo/rainforest.c:411:7: error: 'rf_crc32_table' undeclared (first use in this function); did you mean 'rf_crc32_32'?
   crc=rf_crc32_table[crc&0xff]^(crc>>Cool;
       ^~~~~~~~~~~~~~
       rf_crc32_32
algo/rainforest.c:411:7: note: each undeclared identifier is reported only once for each function it appears in
algo/rainforest.c: In function 'rf_add64_crc32':
algo/rainforest.c:461:7: error: 'rf_crc32_table' undeclared (first use in this function); did you mean 'rf_crc32_32'?
   crc=rf_crc32_table[crc&0xff]^(crc>>Cool;
       ^~~~~~~~~~~~~~
       rf_crc32_32
Makefile:2320: recipe for target 'algo/cpuminer-rainforest.o' failed
make[2]: *** [algo/cpuminer-rainforest.o] Error 1
make[2]: Leaving directory '/opt/crypto/cpuminer-multi'
Makefile:2805: recipe for target 'all-recursive' failed
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory '/opt/crypto/cpuminer-multi'
Makefile:590: recipe for target 'all' failed
make: *** [all] Error 2




Any ideas to fix this problem?!  Huh
legendary
Activity: 2716
Merit: 1094
Black Belt Developer
is there a way to have the miner not use 100% of all cpus? have a dedicated server but don't want to overload it.


If on Linux, just run it with "nice"
Pages:
Jump to: