jl777B (OP)
|
|
October 06, 2017, 06:54:25 PM |
|
computergenie@miningVM:~/Desktop/linux-x64$ ldd ./chips-qt ./chips-qt: /usr/lib/x86_64-linux-gnu/libstdc++.so.6: version `GLIBCXX_3.4.21' not found (required by ./chips-qt)
No love for Debian 8 folks on unix you should be able to build qt on debian
|
|
|
|
Decker
Member
Offline
Activity: 121
Merit: 61
|
|
October 06, 2017, 07:03:27 PM |
|
computergenie@miningVM:~/Desktop/linux-x64$ ldd ./chips-qt ./chips-qt: /usr/lib/x86_64-linux-gnu/libstdc++.so.6: version `GLIBCXX_3.4.21' not found (required by ./chips-qt)
No love for Debian 8 folks For Linux - easiest and right way is building from sources: git clone https://github.com/DeckerSU/chips3/ -b dev-decker cd chips3 ./autogen.sh ./configure make
Also, you may need to install additional dependencies.
|
💰 Komodo (KMD) Enthusiast 💰 🚀 Supporting Decentralization with Komodo Wallet 🚀 🔗 Embrace the Future of Decentralized Exchanges 🔗⚡ Stay Secure, Stay Independent, Go Decentralized! ⚡
|
|
|
ComputerGenie
|
|
October 06, 2017, 07:05:58 PM |
|
LOL I know how to build it. I just can't help myself from commenting on pre-compiles that are pretty much for Ubuntu (and similar) being listed as the generic (rather than specific).
|
If you have to ask "why?", you wouldn`t understand my answer. Always be on the look out, because you never know when you'll be stalked by hit-men that eat nothing but cream cheese....
|
|
|
a007mr
Newbie
Offline
Activity: 40
Merit: 0
|
|
October 06, 2017, 07:08:32 PM |
|
Blockchain in the betting is really cool idea. It give more transparency and confidence.
|
|
|
|
okie dokie
Newbie
Offline
Activity: 63
Merit: 0
|
|
October 06, 2017, 09:22:27 PM |
|
I like the binaries. Block chain downloaded in about a half hour if I remember.
Thanks decker! Good job.
|
|
|
|
kabi123
|
|
October 07, 2017, 11:13:40 PM |
|
ok, coinexchange.io really su.k, 12 hour pending withdraws...hm, maybe they donthave enough BTC in hot wallet or i dontknow, but this really su.k first time that i get this problem.... never happened on cryptopia or nova hmmmmm :-(
|
|
|
|
DigeNarrator
Member
Offline
Activity: 210
Merit: 11
|
|
October 07, 2017, 11:39:52 PM |
|
ok, coinexchange.io really su.k, 12 hour pending withdraws...hm, maybe they donthave enough BTC in hot wallet or i dontknow, but this really su.k first time that i get this problem.... never happened on cryptopia or nova hmmmmm :-(
i did not have issues with withdraws from coinexchange
|
|
|
|
kabi123
|
|
October 08, 2017, 09:45:14 AM |
|
and from now... only 12.5 chips per block....hm ugly surprise hehe P
|
|
|
|
kurbeks
|
|
October 08, 2017, 12:35:23 PM |
|
Should mention in OP msg that halving is every 210k blocks.
|
|
|
|
ComputerGenie
|
|
October 08, 2017, 12:38:42 PM |
|
and from now... only 12.5 chips per block....hm ugly surprise hehe P
Not sure how halvings are a "surprise". Should mention in OP msg that halving is every 210k blocks.
You mean like: ...fork of BTC 0.14...
|
If you have to ask "why?", you wouldn`t understand my answer. Always be on the look out, because you never know when you'll be stalked by hit-men that eat nothing but cream cheese....
|
|
|
kurbeks
|
|
October 08, 2017, 01:13:27 PM |
|
Too hard for peasants to understand Can't know halving of every coin out there.
|
|
|
|
boacw
Member
Offline
Activity: 101
Merit: 10
|
|
October 08, 2017, 02:05:58 PM |
|
I compiled chipsd on Debian 9 and, because I looked for this before and didn't find, I'm writing this message. Is there a wiki I can contribute to to write the steps I followed?
|
|
|
|
ComputerGenie
|
|
October 08, 2017, 02:17:50 PM |
|
Too hard for peasants to understand Can't know halving of every coin out there. smfh
|
If you have to ask "why?", you wouldn`t understand my answer. Always be on the look out, because you never know when you'll be stalked by hit-men that eat nothing but cream cheese....
|
|
|
jl777B (OP)
|
|
October 08, 2017, 03:52:58 PM |
|
I compiled chipsd on Debian 9 and, because I looked for this before and didn't find, I'm writing this message. Is there a wiki I can contribute to to write the steps I followed?
that's great! for now, just post here so we have the info for when we make wiki
|
|
|
|
boacw
Member
Offline
Activity: 101
Merit: 10
|
|
October 08, 2017, 04:52:28 PM |
|
I compiled chipsd on Debian 9 and, because I looked for this before and didn't find, I'm writing this message. Is there a wiki I can contribute to to write the steps I followed?
that's great! for now, just post here so we have the info for when we make wiki These steps only build the headless version (chips-cli, chipsd...), not QT version!I didn't verified what dependency it needs to. If you want to build QT version, don't put the "--with-gui=no" parameter at the end of these steps. - sudo apt-get install libboost-system-dev libboost-filesystem-dev libboost-chrono-dev libboost-program-options-dev libboost-test-dev libboost-thread-dev
- git clone https://github.com/jl777/chips3
- cd chips3
Install Berkeley DB 4.8 from source:- BITCOIN_ROOT=$(pwd)
- BDB_PREFIX="${BITCOIN_ROOT}/db4"
- mkdir -p $BDB_PREFIX
- wget 'http://download.oracle.com/berkeley-db/db-4.8.30.NC.tar.gz'
- echo '12edc0df75bf9abd7f82f821795bcee50f42cb2e5f76a6a281b85732798364ef db-4.8.30.NC.tar.gz' | sha256sum -c
(it should display it succeeded) - tar -xzvf db-4.8.30.NC.tar.gz
- cd db-4.8.30.NC/build_unix/
- ../dist/configure --enable-cxx --disable-shared --with-pic --prefix=$BDB_PREFIX
- make install
Continue with chips: - cd $BITCOIN_ROOT
- ./autogen.sh
- ./configure LDFLAGS="-L${BDB_PREFIX}/lib/" CPPFLAGS="-I${BDB_PREFIX}/include/" --with-gui=no
- make
- ./chipsd -addnode=5.9.253.195
|
|
|
|
jl777B (OP)
|
|
October 08, 2017, 06:08:10 PM |
|
I compiled chipsd on Debian 9 and, because I looked for this before and didn't find, I'm writing this message. Is there a wiki I can contribute to to write the steps I followed?
that's great! for now, just post here so we have the info for when we make wiki These steps only build the headless version (chips-cli, chipsd...), not QT version!I didn't verified what dependency it needs to. If you want to build QT version, don't put the "--with-gui=no" parameter at the end of these steps. - sudo apt-get install libboost-system-dev libboost-filesystem-dev libboost-chrono-dev libboost-program-options-dev libboost-test-dev libboost-thread-dev
- git clone https://github.com/jl777/chips3
- cd chips3
Install Berkeley DB 4.8 from source:- BITCOIN_ROOT=$(pwd)
- BDB_PREFIX="${BITCOIN_ROOT}/db4"
- mkdir -p $BDB_PREFIX
- wget 'http://download.oracle.com/berkeley-db/db-4.8.30.NC.tar.gz'
- echo '12edc0df75bf9abd7f82f821795bcee50f42cb2e5f76a6a281b85732798364ef db-4.8.30.NC.tar.gz' | sha256sum -c
(it should display it succeeded) - tar -xzvf db-4.8.30.NC.tar.gz
- cd db-4.8.30.NC/build_unix/
- ../dist/configure --enable-cxx --disable-shared --with-pic --prefix=$BDB_PREFIX
- make install
Continue with chips: - cd $BITCOIN_ROOT
- ./autogen.sh
- ./configure LDFLAGS="-L${BDB_PREFIX}/lib/" CPPFLAGS="-I${BDB_PREFIX}/include/" --with-gui=no
- make
- ./chipsd -addnode=5.9.253.195
thank you! PM me your CHIPS address and I will send you a 777 CHIPS tip
|
|
|
|
boacw
Member
Offline
Activity: 101
Merit: 10
|
|
October 08, 2017, 06:43:30 PM |
|
I compiled chipsd on Debian 9 and, because I looked for this before and didn't find, I'm writing this message. Is there a wiki I can contribute to to write the steps I followed?
that's great! for now, just post here so we have the info for when we make wiki These steps only build the headless version (chips-cli, chipsd...), not QT version!I didn't verified what dependency it needs to. If you want to build QT version, don't put the "--with-gui=no" parameter at the end of these steps. - sudo apt-get install libboost-system-dev libboost-filesystem-dev libboost-chrono-dev libboost-program-options-dev libboost-test-dev libboost-thread-dev
- git clone https://github.com/jl777/chips3
- cd chips3
Install Berkeley DB 4.8 from source:- BITCOIN_ROOT=$(pwd)
- BDB_PREFIX="${BITCOIN_ROOT}/db4"
- mkdir -p $BDB_PREFIX
- wget 'http://download.oracle.com/berkeley-db/db-4.8.30.NC.tar.gz'
- echo '12edc0df75bf9abd7f82f821795bcee50f42cb2e5f76a6a281b85732798364ef db-4.8.30.NC.tar.gz' | sha256sum -c
(it should display it succeeded) - tar -xzvf db-4.8.30.NC.tar.gz
- cd db-4.8.30.NC/build_unix/
- ../dist/configure --enable-cxx --disable-shared --with-pic --prefix=$BDB_PREFIX
- make install
Continue with chips: - cd $BITCOIN_ROOT
- ./autogen.sh
- ./configure LDFLAGS="-L${BDB_PREFIX}/lib/" CPPFLAGS="-I${BDB_PREFIX}/include/" --with-gui=no
- make
- ./chipsd -addnode=5.9.253.195
I try to compile it on Debian 8 (Jessie) to, but I get an error: CXX leveldb/port/leveldb_libleveldb_a-port_posix.o leveldb/port/port_posix.cc: In function ‘bool leveldb::port::HasAcceleratedCRC32C()’: leveldb/port/port_posix.cc:60:15: warning: ‘ecx’ may be used uninitialized in this function [-Wmaybe-uninitialized] return (ecx & (1 << 20)) != 0; ^ AR leveldb/libleveldb.a CXX leveldb/port/leveldb_libleveldb_sse42_a-port_posix_sse.o AR leveldb/libleveldb_sse42.a CXX leveldb/helpers/memenv/leveldb_libmemenv_a-memenv.o AR leveldb/libmemenv.a CXXLD chipsd libbitcoin_util.a(libbitcoin_util_a-util.o): In function `GetNumCores()': /home/xxxxx/chips3/src/util.cpp:883: undefined reference to `boost::thread::physical_concurrency()' libbitcoin_util.a(libbitcoin_util_a-utiltime.o): In function `sleep': /usr/local/include/boost/thread/pthread/thread_data.hpp:278: undefined reference to `boost::this_thread::hidden::sleep_until(timespec const&)' libbitcoin_wallet.a(libbitcoin_wallet_a-db.o): In function `copy_file': /usr/local/include/boost/filesystem/operations.hpp:539: undefined reference to `boost::filesystem::detail::copy_file(boost::filesystem::path const&, boost::filesystem::path const&, boost::filesystem::detail::copy_option, boost::system::error_code*)' collect2: error: ld returned 1 exit status Makefile:3601: recipe for target 'chipsd' failed make[2]: *** [chipsd] Error 1 make[2]: Leaving directory '/home/xxxxx/chips3/src' Makefile:9242: recipe for target 'all-recursive' failed make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory '/home/xxxxx/chips3/src' Makefile:728: recipe for target 'all-recursive' failed make: *** [all-recursive] Error 1
|
|
|
|
ComputerGenie
|
|
October 08, 2017, 08:31:25 PM |
|
... I try to compile it on Debian 8 (Jessie) to, but I get an error: ...
For 8 and earlier, follow the directions in YourPath/chips3/doc/build-unix.md
|
If you have to ask "why?", you wouldn`t understand my answer. Always be on the look out, because you never know when you'll be stalked by hit-men that eat nothing but cream cheese....
|
|
|
Metaphilibert
Member
Offline
Activity: 64
Merit: 10
|
|
October 09, 2017, 08:15:05 AM |
|
... Install Berkeley DB 4.8 from source:- BITCOIN_ROOT=$(pwd)
- BDB_PREFIX="${BITCOIN_ROOT}/db4"
- mkdir -p $BDB_PREFIX
- wget 'http://download.oracle.com/berkeley-db/db-4.8.30.NC.tar.gz'
- echo '12edc0df75bf9abd7f82f821795bcee50f42cb2e5f76a6a281b85732798364ef db-4.8.30.NC.tar.gz' | sha256sum -c
(it should display it succeeded) - tar -xzvf db-4.8.30.NC.tar.gz
- cd db-4.8.30.NC/build_unix/
- ../dist/configure --enable-cxx --disable-shared --with-pic --prefix=$BDB_PREFIX
- make install
... if you don't want to bother with the berkeley db 4.8 installation, you can also ignore it by using ./configure --with-incompatible-bdb when building chipsd Berkeley DB version only matters if you want to have cross client wallet compatible (a wallet created with a client that was build on 4.8 may not be usable with a client that was build on another version of bdb) So if you extracted your privkeys and not planning to copy the wallet.dat for use with another client, you can ignore the dbd version 4.8 and use the version currently installed on your system
|
|
|
|
boacw
Member
Offline
Activity: 101
Merit: 10
|
|
October 09, 2017, 06:21:35 PM |
|
... Install Berkeley DB 4.8 from source:- BITCOIN_ROOT=$(pwd)
- BDB_PREFIX="${BITCOIN_ROOT}/db4"
- mkdir -p $BDB_PREFIX
- wget 'http://download.oracle.com/berkeley-db/db-4.8.30.NC.tar.gz'
- echo '12edc0df75bf9abd7f82f821795bcee50f42cb2e5f76a6a281b85732798364ef db-4.8.30.NC.tar.gz' | sha256sum -c
(it should display it succeeded) - tar -xzvf db-4.8.30.NC.tar.gz
- cd db-4.8.30.NC/build_unix/
- ../dist/configure --enable-cxx --disable-shared --with-pic --prefix=$BDB_PREFIX
- make install
... if you don't want to bother with the berkeley db 4.8 installation, you can also ignore it by using ./configure --with-incompatible-bdb when building chipsd Berkeley DB version only matters if you want to have cross client wallet compatible (a wallet created with a client that was build on 4.8 may not be usable with a client that was build on another version of bdb) So if you extracted your privkeys and not planning to copy the wallet.dat for use with another client, you can ignore the dbd version 4.8 and use the version currently installed on your system Thanks for this precision. I prefer to be able to use my wallet.dat with any computer (vps, nas, home computer), and therefore, I try to always compile the same way.
|
|
|
|
|