Pages:
Author

Topic: [ANN] MMXVI - NO PREMINE/ICO!BUYBACK PROGRAM- REDUCE BLOCK- MORE TEAM MEMBERS - page 5. (Read 44254 times)

hero member
Activity: 635
Merit: 500
Looks that rocket is starting now. Cry now or buy later  Cheesy
full member
Activity: 279
Merit: 104
I tried to build the cpuminer-multi-argon2  in Linux Ubuntu, by just running sudo ./build.sh.
When linking I get these errors:

Code:
/tmp/ccorz3QX.ltrans11.ltrans.o: In function `scrypt':
ccorz3QX.ltrans11.o:(.text+0x48d6): undefined reference to `scrypt_ChunkMix_sse2'
ccorz3QX.ltrans11.o:(.text+0x4904): undefined reference to `scrypt_ChunkMix_xop'
ccorz3QX.ltrans11.o:(.text+0x4922): undefined reference to `scrypt_ChunkMix_ssse3'
ccorz3QX.ltrans11.o:(.text+0x493c): undefined reference to `scrypt_ChunkMix_avx'
/tmp/ccorz3QX.ltrans25.ltrans.o: In function `scrypt_ROMix_xop.6629':
ccorz3QX.ltrans25.o:(.text+0xf4): undefined reference to `scrypt_ChunkMix_xop'
ccorz3QX.ltrans25.o:(.text+0x119): undefined reference to `scrypt_ChunkMix_xop'
ccorz3QX.ltrans25.o:(.text+0x15d): undefined reference to `scrypt_ChunkMix_xop'
ccorz3QX.ltrans25.o:(.text+0x17d): undefined reference to `scrypt_ChunkMix_xop'
/tmp/ccorz3QX.ltrans25.ltrans.o: In function `scrypt_ROMix_avx.6622':

How do I solve this?


Yeah, there is something wrong with the script, I had a similar problem, try this (copy/paste)

./configure --with-crypto --with-curl CFLAGS="-O3 -march=native -Wall -D_REENTRANT -funroll-loops -fvariable-expansion-in-unroller -fmerge-all-constants -fbranch-target-load-optimize2 -fsched2-use-superblocks -falign-loops=16 -falign-functions=16 -falign-jumps=16 -falign-labels=16 -DUSE_ASM -pg"

then do the

make -j 4

It should build fine.

This won't produce optimal results.

Just use
Code:
./configure --with-crypto --with-curl CFLAGS="-Ofast -march=native"
It's writen in README.md, it's there for reason.


Either one of you have a solution that works.
I had to do a make clean before make, though.
Also I had to do this

sudo chown -R bobben .deps

to overcome a permission problem.
then I did make and it linked fine.
Thanks to both of you.
member
Activity: 338
Merit: 10
StartFi
Well, just got my first accepted share. And this is a CPU only coin (for now) so... there's no turning back. Found a coin I can commit to Cheesy
hero member
Activity: 589
Merit: 500
I tried to build the cpuminer-multi-argon2  in Linux Ubuntu, by just running sudo ./build.sh.
When linking I get these errors:

Code:
/tmp/ccorz3QX.ltrans11.ltrans.o: In function `scrypt':
ccorz3QX.ltrans11.o:(.text+0x48d6): undefined reference to `scrypt_ChunkMix_sse2'
ccorz3QX.ltrans11.o:(.text+0x4904): undefined reference to `scrypt_ChunkMix_xop'
ccorz3QX.ltrans11.o:(.text+0x4922): undefined reference to `scrypt_ChunkMix_ssse3'
ccorz3QX.ltrans11.o:(.text+0x493c): undefined reference to `scrypt_ChunkMix_avx'
/tmp/ccorz3QX.ltrans25.ltrans.o: In function `scrypt_ROMix_xop.6629':
ccorz3QX.ltrans25.o:(.text+0xf4): undefined reference to `scrypt_ChunkMix_xop'
ccorz3QX.ltrans25.o:(.text+0x119): undefined reference to `scrypt_ChunkMix_xop'
ccorz3QX.ltrans25.o:(.text+0x15d): undefined reference to `scrypt_ChunkMix_xop'
ccorz3QX.ltrans25.o:(.text+0x17d): undefined reference to `scrypt_ChunkMix_xop'
/tmp/ccorz3QX.ltrans25.ltrans.o: In function `scrypt_ROMix_avx.6622':

How do I solve this?


Yeah, there is something wrong with the script, I had a similar problem, try this (copy/paste)

./configure --with-crypto --with-curl CFLAGS="-O3 -march=native -Wall -D_REENTRANT -funroll-loops -fvariable-expansion-in-unroller -fmerge-all-constants -fbranch-target-load-optimize2 -fsched2-use-superblocks -falign-loops=16 -falign-functions=16 -falign-jumps=16 -falign-labels=16 -DUSE_ASM -pg"

then do the

make -j 4

It should build fine.

This won't produce optimal results.

Just use
Code:
./configure --with-crypto --with-curl CFLAGS="-Ofast -march=native"
It's writen in README.md, it's there for reason.
newbie
Activity: 25
Merit: 0
I tried to build the cpuminer-multi-argon2  in Linux Ubuntu, by just running sudo ./build.sh.
When linking I get these errors:

Code:
/tmp/ccorz3QX.ltrans11.ltrans.o: In function `scrypt':
ccorz3QX.ltrans11.o:(.text+0x48d6): undefined reference to `scrypt_ChunkMix_sse2'
ccorz3QX.ltrans11.o:(.text+0x4904): undefined reference to `scrypt_ChunkMix_xop'
ccorz3QX.ltrans11.o:(.text+0x4922): undefined reference to `scrypt_ChunkMix_ssse3'
ccorz3QX.ltrans11.o:(.text+0x493c): undefined reference to `scrypt_ChunkMix_avx'
/tmp/ccorz3QX.ltrans25.ltrans.o: In function `scrypt_ROMix_xop.6629':
ccorz3QX.ltrans25.o:(.text+0xf4): undefined reference to `scrypt_ChunkMix_xop'
ccorz3QX.ltrans25.o:(.text+0x119): undefined reference to `scrypt_ChunkMix_xop'
ccorz3QX.ltrans25.o:(.text+0x15d): undefined reference to `scrypt_ChunkMix_xop'
ccorz3QX.ltrans25.o:(.text+0x17d): undefined reference to `scrypt_ChunkMix_xop'
/tmp/ccorz3QX.ltrans25.ltrans.o: In function `scrypt_ROMix_avx.6622':

How do I solve this?


Yeah, there is something wrong with the script, I had a similar problem, try this (copy/paste)

./configure --with-crypto --with-curl CFLAGS="-O3 -march=native -Wall -D_REENTRANT -funroll-loops -fvariable-expansion-in-unroller -fmerge-all-constants -fbranch-target-load-optimize2 -fsched2-use-superblocks -falign-loops=16 -falign-functions=16 -falign-jumps=16 -falign-labels=16 -DUSE_ASM -pg"

then do the

make -j 4

It should build fine.
full member
Activity: 279
Merit: 104
I tried to build the cpuminer-multi-argon2  in Linux Ubuntu, by just running sudo ./build.sh.
When linking I get these errors:

Code:
/tmp/ccorz3QX.ltrans11.ltrans.o: In function `scrypt':
ccorz3QX.ltrans11.o:(.text+0x48d6): undefined reference to `scrypt_ChunkMix_sse2'
ccorz3QX.ltrans11.o:(.text+0x4904): undefined reference to `scrypt_ChunkMix_xop'
ccorz3QX.ltrans11.o:(.text+0x4922): undefined reference to `scrypt_ChunkMix_ssse3'
ccorz3QX.ltrans11.o:(.text+0x493c): undefined reference to `scrypt_ChunkMix_avx'
/tmp/ccorz3QX.ltrans25.ltrans.o: In function `scrypt_ROMix_xop.6629':
ccorz3QX.ltrans25.o:(.text+0xf4): undefined reference to `scrypt_ChunkMix_xop'
ccorz3QX.ltrans25.o:(.text+0x119): undefined reference to `scrypt_ChunkMix_xop'
ccorz3QX.ltrans25.o:(.text+0x15d): undefined reference to `scrypt_ChunkMix_xop'
ccorz3QX.ltrans25.o:(.text+0x17d): undefined reference to `scrypt_ChunkMix_xop'
/tmp/ccorz3QX.ltrans25.ltrans.o: In function `scrypt_ROMix_avx.6622':

How do I solve this?
legendary
Activity: 1834
Merit: 1006
Damn, this coin becomes more interesting.

And the fact is that Bittrex likes such coins $ Cool $
full member
Activity: 175
Merit: 100
hero member
Activity: 610
Merit: 500
hero member
Activity: 610
Merit: 500
full member
Activity: 182
Merit: 100
Please add:

MMXVI - first no premine/no ico/ argon2 coin - https://c-cex.com/?p=mmxvi-btc

in your signature if you want to promote and spread the word on MMXVI a little.thank you.
full member
Activity: 182
Merit: 100
RT: https://twitter.com/coin2016_dev/status/687064513988968449

Next week more will be released. More information about the roadmap and new feautures.
full member
Activity: 188
Merit: 100
sector5.xyz - HYPER, GP, LTC
full member
Activity: 182
Merit: 100
member
Activity: 86
Merit: 10
Hi folks!


Good to hear dev!

The price is terrible at the moment, so the coin could really use some price pull !

What pricetarget do you have for your coin in the immedate short term of a couple of days ?








member
Activity: 112
Merit: 10
Great! Looking forward 2 it
full member
Activity: 182
Merit: 100
Roadmap release coming soon.
full member
Activity: 182
Merit: 100
How to mine MMXVI most efficiently:

1. Download miner https://www.bitteaser.com/press-releases/?title=argon2-optimized-miner
2. Mine on haspower.co multipool with this config
Code:
cpuminer -a argon2 -o stratum+tcp://hashpower.co:5533 -u YOURMMXVIADDRESS -p c=MMXVI
3. PROFIT!!!

Pool mines the most profitable argon2 coin and converts it to MMXVI. If mining MMXVI directly is most profitable, it will mine MMXVI directly. You can also mine with different algorithm using different miner and port. Ports are listed here http://hashpower.co/#algos
For example, if you want to earn MMXVI by mining on your GPU using NeoScrypt algo, use ccminer and this config
Code:
ccminer-35-50-52.exe -a neoscrypt -o stratum+tcp://hashpower.co:4233 -u MKNr7pT9QZRDY5fqZrgqdMvAmnAiVFeZ96 -p c=MMXVI
Pages:
Jump to: