Bitcoin Forum
June 25, 2024, 05:07:44 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 [26] 27 »
501  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [BBR] Boolberry: Privacy and Security - Guaranteed[Bittrex/Poloniex]GPU Released on: August 31, 2014, 07:51:42 PM
That is not a good reason.

You only need to build once for each distro, or less.
Code:
$ readelf -d minerd|grep -w NEEDED
 0x0000000000000001 (NEEDED)             Shared library: [libcurl.so.4]
 0x0000000000000001 (NEEDED)             Shared library: [libpthread.so.0]
 0x0000000000000001 (NEEDED)             Shared library: [libjansson.so.4]
 0x0000000000000001 (NEEDED)             Shared library: [libdl.so.2]
 0x0000000000000001 (NEEDED)             Shared library: [libc.so.6]
If those libs are installed on target machine, it works.

One other compatibility issue between distros is memcpy bug:
http://www.win.tue.nl/~aeb/linux/misc/gcc-semibug.html
And read Drepper's comments about pie/pic.


I'm using Wolf0's statically linked miner across all of them and all working without issues.
Instead of continueing to mine XMR, i'd like to switch them all to BBR and there are some
really old versions of software running on them that I simply can not upgrade (old autoconf, libcurl etc)
so I don't really have a choice but to build it statically. (some of the machines won't even compile it dynamically!)
502  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [BBR] Boolberry: Privacy and Security - Guaranteed[Bittrex/Poloniex]GPU Released on: August 31, 2014, 06:52:25 PM

And to add to otila,

resolution is to build static curl, posted in Wolf0's thread https://bitcointalk.org/index.php?topic=632724.msg8186180#msg8186180

Wolf0's code builds with no problem at all.. Using the same statically built curl version...
503  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [BBR] Boolberry: Privacy and Security - Guaranteed[Bittrex/Poloniex]GPU Released on: August 31, 2014, 06:37:20 PM
root@cami009:~/cpuminer-multi# LDFLAGS="-static" ./configure
[..]
checking for curl-config... /usr/bin/curl-config
checking for the version of libcurl... 7.35.0
checking for libcurl >= version 7.15.2... yes
checking whether libcurl is usable... no
configure: error: Missing required libcurl >= 7.15.2



Can you first tell why you want to link it statically?
http://www.akkadia.org/drepper/no_static_linking.html
When you use -static flag for ld, you need libcurl.a.  And "./configure --enable-static --with-pic" for curl.


I have > 50 machines with a variety of different Linux distros and having to go through the hassle of building on every single machine is rather painful (I work at cloud provider).
504  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [BBR] Boolberry: Privacy and Security - Guaranteed[Bittrex/Poloniex]GPU Released on: August 31, 2014, 05:33:01 PM
I tried to recreate your issue in my box. It looks like the problem is with your curl install. When I use the system curl it just works fine with the static build.

Code:
/usr/lib/x86_64-linux-gnu

Code:
 curl --version
curl 7.35.0 (x86_64-pc-linux-gnu) libcurl/7.35.0 OpenSSL/1.0.1f zlib/1.2.8 libidn/1.28 librtmp/2.3
Protocols: dict file ftp ftps gopher http https imap imaps ldap ldaps pop3 pop3s rtmp rtsp smtp smtps telnet tftp
Features: AsynchDNS GSS-Negotiate IDN IPv6 Largefile NTLM NTLM_WB SSL libz TLS-SRP

Code:
LDFLAGS="-static" ./configure

Those other configure options that you are trying to pass to disable libs are not supported.


root@cami009:~/cpuminer-multi# curl --version
curl 7.35.0 (x86_64-pc-linux-gnu) libcurl/7.35.0 OpenSSL/1.0.1f zlib/1.2.8 libidn/1.28 librtmp/2.3
Protocols: dict file ftp ftps gopher http https imap imaps ldap ldaps pop3 pop3s rtmp rtsp smtp smtps telnet tftp
Features: AsynchDNS GSS-Negotiate IDN IPv6 Largefile NTLM NTLM_WB SSL libz TLS-SRP



root@cami009:~/cpuminer-multi# LDFLAGS="-static" ./configure
[..]
checking for curl-config... /usr/bin/curl-config
checking for the version of libcurl... 7.35.0
checking for libcurl >= version 7.15.2... yes
checking whether libcurl is usable... no
configure: error: Missing required libcurl >= 7.15.2

505  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [BBR] Boolberry: Privacy and Security - Guaranteed[Bittrex/Poloniex]GPU Released on: August 31, 2014, 05:02:47 PM
Here is the config.log: http://pastebin.com/ST3z6te0
506  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [BBR] Boolberry: Privacy and Security - Guaranteed[Bittrex/Poloniex]GPU Released on: August 31, 2014, 04:55:39 PM
The miner is known to build just fine on various platforms. The problem might be related to you configure options if you used static and or your gcc version (4.4.x is quite dated). Have you tried building with -fPIC

working gcc version on my rig = gcc (Ubuntu 4.8.2-19ubuntu1) 4.8.2



root@cami001:~/curl-7.37.1# ./configure --disable-ftp --disable-ldap --disable-ldaps --disable-rtsp --disable-proxy --disable-dict --disable-telnet --disable-tftp --disable-pop3 --disable-imap --disable-smtp --disable-gopher --disable-manual --disable-ipv6 --disable-verbose --disable-sspi --disable-crypto-auth --disable-ntlm-wb --disable-tls-srp --disable-cookies --disable-soname-bump --without-zlib --without-winssl --without-darwinssl --without-ssl --without-gnutls --without-polarssl --without-cyassl --without-nss --without-axtls --without-libmetalink --without-libssh2 --without-librtmp --without-winidn --without-libidn --without-nghttp2 --prefix=/tmp/curl
root@cami001:~/curl-7.37.1# make -j 20; make install

root@cami001:~/cpuminer-multi# CFLAGS="-I/tmp/curl/include" LDFLAGS="-static -L/tmp/curl/lib" ./configure --with-libcurl=/tmp/curl
[..]
checking for curl_free... yes
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating Makefile
config.status: creating compat/Makefile
config.status: creating compat/jansson/Makefile
config.status: creating cpuminer-config.h
config.status: cpuminer-config.h is unchanged
config.status: executing depfiles commands


root@cami001:~/cpuminer-multi# make
[..]
gcc -std=gnu99 -std=gnu11 -O3 -march=native -fPIC -flto  -I/tmp/curl/include -pthread -pie -static -L/tmp/curl/lib -o minerd minerd-cpu-miner.o minerd-util.o minerd-wildkeccak.o minerd-xmalloc.o -L/tmp/curl/lib -lcurl compat/jansson/libjansson.a -lpthread  
/usr/bin/ld: /usr/lib/gcc/x86_64-linux-gnu/4.9/crtbeginT.o: relocation R_X86_64_32 against `__TMC_END__' can not be used when making a shared object; recompile with -fPIC
/usr/lib/gcc/x86_64-linux-gnu/4.9/crtbeginT.o: error adding symbols: Bad value
collect2: error: ld returned 1 exit status
make[2]: *** [minerd] Error 1
make[2]: Leaving directory `/root/cpuminer-multi'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/root/cpuminer-multi'
make: *** [all] Error 2


root@cami001:~/cpuminer-multi# gcc --version
gcc (Ubuntu 4.9.1-3ubuntu2~14.04.1) 4.9.1

507  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [BBR] Boolberry: Privacy and Security - Guaranteed[Bittrex/Poloniex]GPU Released on: August 31, 2014, 04:44:43 PM
The miner is known to build just fine on various platforms. The problem might be related to you configure options if you used static and or your gcc version (4.4.x is quite dated). Have you tried building with -fPIC

working gcc version on my rig = gcc (Ubuntu 4.8.2-19ubuntu1) 4.8.2


Well, I'm trying to get it built statically. Building normally works fine.
Even with gcc 4.9.1 it isn't building statically..
508  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [BBR] Boolberry: Privacy and Security - Guaranteed[Bittrex/Poloniex]GPU Released on: August 31, 2014, 04:12:18 PM
Has anyone managed to get miner (https://github.com/cryptozoidberg/cpuminer-multi) built statically?
I've tried various linux distros (CentOS bleh, Ubuntu), various combinations of curl (statically built) etc and not having any luck at all..

[root@cpt-cloud001 cpuminer-multi]# make
make  all-recursive
make[1]: Entering directory `/root/cpuminer-multi'
Making all in compat
make[2]: Entering directory `/root/cpuminer-multi/compat'
Making all in jansson
make[3]: Entering directory `/root/cpuminer-multi/compat/jansson'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/root/cpuminer-multi/compat/jansson'
make[3]: Entering directory `/root/cpuminer-multi/compat'
make[3]: Nothing to be done for `all-am'.
make[3]: Leaving directory `/root/cpuminer-multi/compat'
make[2]: Leaving directory `/root/cpuminer-multi/compat'
make[2]: Entering directory `/root/cpuminer-multi'
gcc -std=gnu99 -DHAVE_CONFIG_H -I. -pthread -fno-strict-aliasing -I./compat/jansson -I/tmp/curl/include  -O3 -march=native -fPIC  -I/tmp/curl/include -MT minerd-cpu-miner.o -MD -MP -MF .deps/minerd-cpu-miner.Tpo -c -o minerd-cpu-miner.o `test -f 'cpu-miner.c' || echo './'`cpu-miner.c
mv -f .deps/minerd-cpu-miner.Tpo .deps/minerd-cpu-miner.Po
gcc -std=gnu99 -DHAVE_CONFIG_H -I. -pthread -fno-strict-aliasing -I./compat/jansson -I/tmp/curl/include  -O3 -march=native -fPIC  -I/tmp/curl/include -MT minerd-util.o -MD -MP -MF .deps/minerd-util.Tpo -c -o minerd-util.o `test -f 'util.c' || echo './'`util.c
mv -f .deps/minerd-util.Tpo .deps/minerd-util.Po
gcc -std=gnu99 -DHAVE_CONFIG_H -I. -pthread -fno-strict-aliasing -I./compat/jansson -I/tmp/curl/include  -O3 -march=native -fPIC  -I/tmp/curl/include -MT minerd-wildkeccak.o -MD -MP -MF .deps/minerd-wildkeccak.Tpo -c -o minerd-wildkeccak.o `test -f 'wildkeccak.c' || echo './'`wildkeccak.c
wildkeccak.c:106:2: warning: #warning using SSE2 optimizations
mv -f .deps/minerd-wildkeccak.Tpo .deps/minerd-wildkeccak.Po
gcc -std=gnu99 -DHAVE_CONFIG_H -I. -pthread -fno-strict-aliasing -I./compat/jansson -I/tmp/curl/include  -O3 -march=native -fPIC  -I/tmp/curl/include -MT minerd-xmalloc.o -MD -MP -MF .deps/minerd-xmalloc.Tpo -c -o minerd-xmalloc.o `test -f 'xmalloc.c' || echo './'`xmalloc.c
mv -f .deps/minerd-xmalloc.Tpo .deps/minerd-xmalloc.Po
gcc -std=gnu99 -O3 -march=native -fPIC  -I/tmp/curl/include -pthread -pie -static -L/tmp/curl/lib -o minerd minerd-cpu-miner.o minerd-util.o minerd-wildkeccak.o minerd-xmalloc.o -L/tmp/curl/lib -lcurl -lrt compat/jansson/libjansson.a -lpthread  
/usr/bin/ld: /usr/lib/gcc/x86_64-redhat-linux/4.4.7/crtbeginT.o: relocation R_X86_64_32 against `__DTOR_END__' can not be used when making a shared object; recompile with -fPIC
/usr/lib/gcc/x86_64-redhat-linux/4.4.7/crtbeginT.o: could not read symbols: Bad value
collect2: ld returned 1 exit status
make[2]: *** [minerd] Error 1
make[2]: Leaving directory `/root/cpuminer-multi'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/root/cpuminer-multi'
make: *** [all] Error 2
509  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [DSH] Dashcoin - (CPU mining, true anonymity, automated source code) on: August 30, 2014, 08:01:10 PM
OTC trading will be needed no longer.

After the issue of a lack of decimal places on current exchanges came up with Ducknote, I set out to write an exchange which supports 3 decimal places past a satoshi.  The base unit for prices on the exchange was a satoshi to make things simple.  That exchange has since been updated with a new website, and many new features.  I have also recently added Dashcoin to the exchange, as I saw its need for prices below a satoshi.

The updated exchange has been under a closed beta, and I will be opening it to the public tomorrow.

Which exchange?
510  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [BBR] Boolberry: Privacy and Security - Guaranteed[Bittrex/Poloniex]GPU Released on: August 30, 2014, 05:43:02 AM
Since BBR is implementing some neat tech and the devs are active, thought I'd ask:

Idea 1)

http://www.cryptocoinsnews.com/sponsored-stories/syscoin-building-crypto-economy/2014/08/28?utm_source=feedly&utm_reader=feedly&utm_medium=rss&utm_campaign=syscoin-building-crypto-economy

..
The regeneration of service fees is also rather important as this feature is what enables the existence of Syscoin in the first place. These service fees are collected by the network and then sent out to all of the miners. These fees are the main reason miners will continue to mine after all the block rewards have been collected, which means they’re also what secures the entire business economy built on Syscoin.
..

Is this a feature that could be implemented in BBR?


Idea 2)

Also this dump and pump that goes on.. Is it technically possible for an idea like: annual or monthly interest for current BBR holders?
This will cause it to be even more valuable as people will hold onto their BBR instead of trying to sell it and make a fast sale or dumping its value.
So the BBR network automatically gives a 5% interest for all people who have BBR or something along those lines.

Any other ideas or comments?
Syscoin - i can't take seriously 18% premine coin.
And i don't  see a problem with mining in future - we have good emission curve that will allow smooth replacement block reward by tx fees.


just my opinion.

I don't take syscoin seriously either.. But the idea I highlighted is something that is kinda neat.. It gives miners more reason to continue mining.
Could you explain the TX fees bit? I kinda like BBR so I was looking for ideas on how to encourage miners to hold onto their coins and network control via compound interest seems like something no other coin anywhere has.

511  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [BBR] Boolberry: Privacy and Security - Guaranteed[Bittrex/Poloniex]GPU Released on: August 29, 2014, 09:06:29 AM
Since BBR is implementing some neat tech and the devs are active, thought I'd ask:

Idea 1)

http://www.cryptocoinsnews.com/sponsored-stories/syscoin-building-crypto-economy/2014/08/28?utm_source=feedly&utm_reader=feedly&utm_medium=rss&utm_campaign=syscoin-building-crypto-economy

..
The regeneration of service fees is also rather important as this feature is what enables the existence of Syscoin in the first place. These service fees are collected by the network and then sent out to all of the miners. These fees are the main reason miners will continue to mine after all the block rewards have been collected, which means they’re also what secures the entire business economy built on Syscoin.
..

Is this a feature that could be implemented in BBR?


Idea 2)

Also this dump and pump that goes on.. Is it technically possible for an idea like: annual or monthly interest for current BBR holders?
This will cause it to be even more valuable as people will hold onto their BBR instead of trying to sell it and make a fast sale or dumping its value.
So the BBR network automatically gives a 5% interest for all people who have BBR or something along those lines.

Any other ideas or comments?
512  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [XDN] duckNote [ANN]. CryptoNote based. Anonymous and CPU only. on: August 28, 2014, 12:19:24 PM
http://www.cryptocoinsnews.com/sponsored-stories/syscoin-building-crypto-economy/2014/08/28?utm_source=feedly&utm_reader=feedly&utm_medium=rss&utm_campaign=syscoin-building-crypto-economy

..
The regeneration of service fees is also rather important as this feature is what enables the existence of Syscoin in the first place. These service fees are collected by the network and then sent out to all of the miners. These fees are the main reason miners will continue to mine after all the block rewards have been collected, which means they’re also what secures the entire business economy built on Syscoin.
..

Is this a feature that could be implemented in XDN?
513  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [XDN] duckNote [ANN]. CryptoNote based. Anonymous and CPU only. on: August 28, 2014, 03:56:41 AM
lol,   all other dev's do the same thing.

when users come in to a forum, un informed and speaking a bunch of jibberish about the end of a coin based on the fact they do not understand something, then I agree with the dev, they are trolls with the goal of spreading fud.

In this case, it is not fud:

Dear users, sorry for inconvenience, we found a problem.
Last provided version is a build for Windows 32-bit version. We will provide 64-bit OS version in a few minutes.
514  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [FCN] Fantomcoin. CN based, anonymous. Merge mine with BCN, XMR, QCN, duck. on: August 28, 2014, 03:53:38 AM
Fantomcoin is due to be listed on HitBTC soon, so it will still be on a relatively large exchange.

Goddammit,Poloniex...
I'm still sure this is not the end though. As said before, we're moving to HitBTC. Unfortunately FCN will lose a part of its fans but it's ok. We know that our devs are now back, working on FCN improvement. So yeah, i wish FCN a good start on HitBTC.

Devs? or Dev? Coin's that only have one dev seem to be taking a huge knock.
515  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [FCN] Fantomcoin. CN based, anonymous. Merge mine with BCN, XMR, QCN, duck. on: August 27, 2014, 06:55:49 PM
poloniex.com Announcements
The following coins will be delisted on August 29th: GIAR, BITS, SHIBE, XLB, DIS, CNL, YIN, YANG, NL, FCN, QCN. Please withdraw your balances of these coins as soon as possible.

Time to get rid of it I'm afraid Sad
516  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [XDN] duckNote [ANN]. CryptoNote based. Anonymous and CPU only. on: August 27, 2014, 05:17:42 PM
XDN now is encountering big crisis,Dev,you need to fix this issue ASAP.
price is going down.

XDN / ducknote problems and people are starting to dump their coins.
517  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [XDN] duckNote [ANN]. CryptoNote based. Anonymous and CPU only. on: August 27, 2014, 12:22:19 PM
Miners! help me and duckNote community with your hashrate! Go mine http://ducknote.xminingpool.com/

Is there an option for merged mining? (XDN + FCN)
518  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [XDN] duckNote [ANN]. CryptoNote based. Anonymous and CPU only. on: August 25, 2014, 04:51:55 AM
ducknote to the moooon!
519  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [DSH] Dashcoin - Major update (CPU mining, true anonymity ) on: August 24, 2014, 07:54:05 PM
I see DASH is getting some attention.  The hash-rate tripled within 24 hours.

DASH is pretty much only being mined via minergate.com .. Apparently they didn't get the memo..
520  Economy / Exchanges / Re: HitBTC.com - The most advanced cryptocurrency exchange on: August 24, 2014, 04:24:20 AM
Hi htbtc.



For the last >2 days there has been pending transactions as well as incoming transfers which arent showing..
What's going on?

Regards
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 [26] 27 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!