Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [QRK] Quark | Super secure hashing | CPU mining
by
K1773R
on 06/09/2013, 07:38:20 UTC
Sorry, I'm not quite the wizard with autotools. Anyway, compile it on either linux, or someone has been successful with mingw or cygwin. Autotools doesn't do MSVS. SO HERE:

git clone https://github.com/uncle-bob/quarkcoin-cpuminer.git  
cd quarkcoin-cpuminer  
sh autogen.sh  
./configure CFLAGS="-msse2"  
make  

-msse2 is not optional, should be built into the build scripts. However, I've avoided getting good with autotools this long, might as well not start now. Really anyone have a simple examples for autotools? They seem to all turn into a huge pita quickly. Step two might be cmake or anything else.

really though,  the code at:  

http://stonefoz.myfastmail.com/  

is probably the best, first release where fast is first.
I've been monkeying around with stuff on github, should be faster later, just not anytime soon. Rewriting large bits and it's going to be broken some times.

when i run ./configure CFLAGS="-msse2"
i get

./configure: line 5577: syntax error near unexpected token `,'
./configure: line 5577: `LIBCURL_CHECK_CONFIG(, 7.15.2, ,'

but i have curl 7.32.0 installed

any idea??
are you on a debian based system (ubuntu, mint, etc), if so:
Code:
sudo apt-get install -y libcurl4-openssl-dev
otherwise look for a libcurl dev(eloper) package.

for compiling you need the headers of given libs. ie, if you have a library libfoo, you need to install libfoo-dev if you want to use it in your code.