Author

Topic: [ANN] cudaMiner & ccMiner CUDA based mining applications [Windows/Linux/MacOSX] - page 182. (Read 3426932 times)

full member
Activity: 266
Merit: 100
legendary
Activity: 3164
Merit: 1003
that's my address for 1, well the donation address for cudamining.cc
but your right, is it stuck.

or the user...
Just saying  Roll Eyes
lol, I almost got a donation  Grin



you did, i mined straight  to your wallet for 8 hrs a week  ago or so

and that donation goes to bigjme.   ok 40 weeks to go on btc wallet
full member
Activity: 153
Merit: 100
mine for future~
Got some problem on linux to compile.
I just compile/install th gmp library (https://gmplib.org/manual/Installing-GMP.html)

Now, the ./configure is working for the cudaminer.
But the make is failing because of :
Code:
make[2]: Entering directory `/opt/miners/cudaminer-cryptonite'
nvcc -Xptxas "-abi=no -v" -arch=compute_35 --ptxas-options=-v   -O2 -o trashminer.o -c trashminer.cu
In file included from trashminer.cu:58:0:
uint256.h:16:19: fatal error: gmpxx.h: No such file or directory
 #include

I just try to copy the gmp .h file in the root cudaminer directory and restart a make ... but it's the same.
I'm not really good with compilation, Any idea ? Smiley
same question as yours.
and compile from cygwin also.
seems it cant be done under gcc
hero member
Activity: 789
Merit: 501
Got some problem on linux to compile.
I just compile/install th gmp library (https://gmplib.org/manual/Installing-GMP.html)

Now, the ./configure is working for the cudaminer.
But the make is failing because of :
Code:
make[2]: Entering directory `/opt/miners/cudaminer-cryptonite'
nvcc -Xptxas "-abi=no -v" -arch=compute_35 --ptxas-options=-v   -O2 -o trashminer.o -c trashminer.cu
In file included from trashminer.cu:58:0:
uint256.h:16:19: fatal error: gmpxx.h: No such file or directory
 #include

I just try to copy the gmp .h file in the root cudaminer directory and restart a make ... but it's the same.
I'm not really good with compilation, Any idea ? Smiley
full member
Activity: 263
Merit: 100
Wrapper for cuda miner by Zelante v2.0.4 (Aug 6th 2014) - "Split Screen"

[add]
newbie
Activity: 55
Merit: 0
Almost had everything compiled for CudaMiner on windows when I hit a wall during this step

LIBCURL="-lcurldll" ./configure CFLAGS="-O3"

It errors out with the following:

checking for __gmpz_init in -lgmp... no
configure: error: GNU MP not found, see https://gmplib.org/

I know that I am missing gmplib, just not sure where or how to install it via MinGW/MSYS

The dev of cryptonight mentioned in this irc channel about that question ( i asked in the #ccminer irc channel)
" you will need libgmp. build from source maybe"

Thanks for the tip, I managed to install libgmp in MinGW, but now I am stuck on the close to the last step being the make.  I'm getting an error listed:

c:\mingw\include\ws2tcpip.h:38:2: error: #error "ws2tcpip.h is not compatible with winsock.h. Include winsock2.h instead."
 #error "ws2tcpip.h is not compatible with winsock.h. Include winsock2.h instead."
  ^
In file included from c:/mingw64/include/curl/curlbuild.h:124:0,
                 from c:/mingw64/include/curl/curl.h:34,
                 from cpu-miner.c:37:
c:\mingw\include\ws2tcpip.h:147:8: error: redefinition of 'struct ip_mreq'
 struct ip_mreq {
        ^
In file included from c:\mingw\include\windows.h:93:0,
                 from cpu-miner.c:23:
c:\mingw\include\winsock.h:315:8: note: originally defined here
 struct ip_mreq {
        ^

The advise from the dev in irc was as follows :
"i think change cpu-miner.c
 so
#include
#include

That didn't really help.. I've been at this now for over 3 hours and my head is starting to hurt lol. 

I think this can be resolved by installing an earlier version of MinGW, the only issue is that I cannot find a safe and working download link anywhere..

When I used Windows, I would build a cross-toolchain, then use that to build a Win64 native toolchain.

Hmmm, thanks for the info.. However, it doesn't make a whole lot of sense to me Tongue.  I am somewhat of a newb here..

I'm following some legacy guides that I've found such as http://pastebin.com/p2cRgHxd

Oh, maybe that's not for you, then. I prefer not to use MSYS or the like at all, and instead build what I need from source from a linux machine.

Hehe yeah, understandable..

I actually have an ubuntu server up and running, however.. It's not really that accessible to pop in one of my 750 Ti cards.  If it was, I would have likely had this compiled awhile ago hah.. 
newbie
Activity: 55
Merit: 0
Almost had everything compiled for CudaMiner on windows when I hit a wall during this step

LIBCURL="-lcurldll" ./configure CFLAGS="-O3"

It errors out with the following:

checking for __gmpz_init in -lgmp... no
configure: error: GNU MP not found, see https://gmplib.org/

I know that I am missing gmplib, just not sure where or how to install it via MinGW/MSYS

The dev of cryptonight mentioned in this irc channel about that question ( i asked in the #ccminer irc channel)
" you will need libgmp. build from source maybe"

Thanks for the tip, I managed to install libgmp in MinGW, but now I am stuck on the close to the last step being the make.  I'm getting an error listed:

c:\mingw\include\ws2tcpip.h:38:2: error: #error "ws2tcpip.h is not compatible with winsock.h. Include winsock2.h instead."
 #error "ws2tcpip.h is not compatible with winsock.h. Include winsock2.h instead."
  ^
In file included from c:/mingw64/include/curl/curlbuild.h:124:0,
                 from c:/mingw64/include/curl/curl.h:34,
                 from cpu-miner.c:37:
c:\mingw\include\ws2tcpip.h:147:8: error: redefinition of 'struct ip_mreq'
 struct ip_mreq {
        ^
In file included from c:\mingw\include\windows.h:93:0,
                 from cpu-miner.c:23:
c:\mingw\include\winsock.h:315:8: note: originally defined here
 struct ip_mreq {
        ^

The advise from the dev in irc was as follows :
"i think change cpu-miner.c
 so
#include
#include

That didn't really help.. I've been at this now for over 3 hours and my head is starting to hurt lol. 

I think this can be resolved by installing an earlier version of MinGW, the only issue is that I cannot find a safe and working download link anywhere..

When I used Windows, I would build a cross-toolchain, then use that to build a Win64 native toolchain.

Hmmm, thanks for the info.. However, it doesn't make a whole lot of sense to me Tongue.  I am somewhat of a newb here..

I'm following some legacy guides that I've found such as http://pastebin.com/p2cRgHxd
newbie
Activity: 55
Merit: 0
Almost had everything compiled for CudaMiner on windows when I hit a wall during this step

LIBCURL="-lcurldll" ./configure CFLAGS="-O3"

It errors out with the following:

checking for __gmpz_init in -lgmp... no
configure: error: GNU MP not found, see https://gmplib.org/

I know that I am missing gmplib, just not sure where or how to install it via MinGW/MSYS

The dev of cryptonight mentioned in this irc channel about that question ( i asked in the #ccminer irc channel)
" you will need libgmp. build from source maybe"

Thanks for the tip, I managed to install libgmp in MinGW, but now I am stuck on the close to the last step being the make.  I'm getting an error listed:

c:\mingw\include\ws2tcpip.h:38:2: error: #error "ws2tcpip.h is not compatible with winsock.h. Include winsock2.h instead."
 #error "ws2tcpip.h is not compatible with winsock.h. Include winsock2.h instead."
  ^
In file included from c:/mingw64/include/curl/curlbuild.h:124:0,
                 from c:/mingw64/include/curl/curl.h:34,
                 from cpu-miner.c:37:
c:\mingw\include\ws2tcpip.h:147:8: error: redefinition of 'struct ip_mreq'
 struct ip_mreq {
        ^
In file included from c:\mingw\include\windows.h:93:0,
                 from cpu-miner.c:23:
c:\mingw\include\winsock.h:315:8: note: originally defined here
 struct ip_mreq {
        ^

The advise from the dev in irc was as follows :
"i think change cpu-miner.c
 so
#include
#include

That didn't really help.. I've been at this now for over 3 hours and my head is starting to hurt lol. 

I think this can be resolved by installing an earlier version of MinGW, the only issue is that I cannot find a safe and working download link anywhere..
member
Activity: 112
Merit: 10
Almost had everything compiled for CudaMiner on windows when I hit a wall during this step

LIBCURL="-lcurldll" ./configure CFLAGS="-O3"

It errors out with the following:

checking for __gmpz_init in -lgmp... no
configure: error: GNU MP not found, see https://gmplib.org/

I know that I am missing gmplib, just not sure where or how to install it via MinGW/MSYS

The dev of cryptonight mentioned in this irc channel about that question ( i asked in the #ccminer irc channel)
" you will need libgmp. build from source maybe"

Thanks for the tip, I managed to install libgmp in MinGW, but now I am stuck on the close to the last step being the make.  I'm getting an error listed:

c:\mingw\include\ws2tcpip.h:38:2: error: #error "ws2tcpip.h is not compatible with winsock.h. Include winsock2.h instead."
 #error "ws2tcpip.h is not compatible with winsock.h. Include winsock2.h instead."
  ^
In file included from c:/mingw64/include/curl/curlbuild.h:124:0,
                 from c:/mingw64/include/curl/curl.h:34,
                 from cpu-miner.c:37:
c:\mingw\include\ws2tcpip.h:147:8: error: redefinition of 'struct ip_mreq'
 struct ip_mreq {
        ^
In file included from c:\mingw\include\windows.h:93:0,
                 from cpu-miner.c:23:
c:\mingw\include\winsock.h:315:8: note: originally defined here
 struct ip_mreq {
        ^

The advise from the dev in irc was as follows :
"i think change cpu-miner.c
 so
#include
#include
newbie
Activity: 55
Merit: 0
Almost had everything compiled for CudaMiner on windows when I hit a wall during this step

LIBCURL="-lcurldll" ./configure CFLAGS="-O3"

It errors out with the following:

checking for __gmpz_init in -lgmp... no
configure: error: GNU MP not found, see https://gmplib.org/

I know that I am missing gmplib, just not sure where or how to install it via MinGW/MSYS

The dev of cryptonight mentioned in this irc channel about that question ( i asked in the #ccminer irc channel)
" you will need libgmp. build from source maybe"

Thanks for the tip, I managed to install libgmp in MinGW, but now I am stuck on the close to the last step being the make.  I'm getting an error listed:

c:\mingw\include\ws2tcpip.h:38:2: error: #error "ws2tcpip.h is not compatible with winsock.h. Include winsock2.h instead."
 #error "ws2tcpip.h is not compatible with winsock.h. Include winsock2.h instead."
  ^
In file included from c:/mingw64/include/curl/curlbuild.h:124:0,
                 from c:/mingw64/include/curl/curl.h:34,
                 from cpu-miner.c:37:
c:\mingw\include\ws2tcpip.h:147:8: error: redefinition of 'struct ip_mreq'
 struct ip_mreq {
        ^
In file included from c:\mingw\include\windows.h:93:0,
                 from cpu-miner.c:23:
c:\mingw\include\winsock.h:315:8: note: originally defined here
 struct ip_mreq {
        ^
member
Activity: 112
Merit: 10
Almost had everything compiled for CudaMiner on windows when I hit a wall during this step

LIBCURL="-lcurldll" ./configure CFLAGS="-O3"

It errors out with the following:

checking for __gmpz_init in -lgmp... no
configure: error: GNU MP not found, see https://gmplib.org/

I know that I am missing gmplib, just not sure where or how to install it via MinGW/MSYS

The dev of cryptonite mentioned in this irc channel about that question ( i asked in the #ccminer irc channel)
" you will need libgmp. build from source maybe"
newbie
Activity: 55
Merit: 0
Almost had everything compiled for CudaMiner on windows when I hit a wall during this step

LIBCURL="-lcurldll" ./configure CFLAGS="-O3"

It errors out with the following:

checking for __gmpz_init in -lgmp... no
configure: error: GNU MP not found, see https://gmplib.org/

I know that I am missing gmplib, just not sure where or how to install it via MinGW/MSYS
sr. member
Activity: 462
Merit: 250
sr. member
Activity: 462
Merit: 250
probably but lets know what "half decent" means first...
Mine isn't ready to be released, and won't until I get it working on pool...
almost 2 mhs on a gtx660 oem with 1152 cores

Finally got the hashrate more consistent - slightly over 2MH/s per 750Ti @ stock.

How fast was the original?

Original was ~1.5MH/s, I think. Still lots to do, though.

Ok, thanks. Good luck with optimizing Smiley


**edit: wow, prize really dropping fast. No buyers over 0.00002226 now!
newbie
Activity: 55
Merit: 0
https://github.com/MiniblockchainProject/CudaMiner

Trying to get this to compile on windows is a pain in the butt. 
sr. member
Activity: 462
Merit: 250
probably but lets know what "half decent" means first...
Mine isn't ready to be released, and won't until I get it working on pool...
almost 2 mhs on a gtx660 oem with 1152 cores

Finally got the hashrate more consistent - slightly over 2MH/s per 750Ti @ stock.

How fast was the original?
legendary
Activity: 1400
Merit: 1050
Either of you two guys planning to release yours?

This one was built on Cuda and not cc miner.
I would say it an sgcudaminer...

Huh
it compiles with mingw32 (or I didn't look much into details)
full member
Activity: 168
Merit: 100
probably but lets know what "half decent" means first...
Mine isn't ready to be released, and won't until I get it working on pool...
almost 2 mhs on a gtx660 oem with 1152 cores

Finally got the hashrate more consistent - slightly over 2MH/s per 750Ti @ stock.

Is that yours on the new release?
sr. member
Activity: 329
Merit: 250
probably but lets know what "half decent" means first...
Mine isn't ready to be released, and won't until I get it working on pool...
almost 2 mhs on a gtx660 oem with 1152 cores
sr. member
Activity: 462
Merit: 250
I have never used cudaminer, don't even know the proper arguments. So used to cc and nv...

Does the released version have pool support, btw? See above
Jump to:
© 2020, Bitcointalksearch.org