Bitcoin Forum

Alternate cryptocurrencies => Altcoin Discussion => Topic started by: WorldCoin on May 22, 2013, 01:10:45 AM



Title: [ANN] WDC WorldCoin | Official Developer Thread |
Post by: WorldCoin on May 22, 2013, 01:10:45 AM
Welcome to the WorldCoin development thread! This is where we post projects we currently need and where developers can work on their own projects to support the coin.

Ideally when a project is done and posted, hero members should be able to confirm there is no malicious code and make sure there are no viruses.
We would like to thank you for your continued support and hopefully we can create some awesome stuff!

Currently Needed:
Fully Working Linux Port
Android Wallet – either brand new or incorporated into a current one


Sincerely,
WorldCoin Team


Title: Re: [ANN] WorldCoin WDC | Official Developer Thread |
Post by: Coinbrah on May 22, 2013, 01:14:16 AM
Do you mean the QT client in linux or worldcoind?


Title: Re: [ANN] WorldCoin WDC | Official Developer Thread |
Post by: WorldCoin on May 22, 2013, 01:17:18 AM
Do you mean the QT client in linux or worldcoind?

Fixed in OP


Title: Re: [ANN] WorldCoin WDC | Official Developer Thread |
Post by: Coinbrah on May 22, 2013, 01:20:52 AM
I was able to compile in Ubuntu 12.04 without too much fuss.


Title: Re: [ANN] WorldCoin WDC | Official Developer Thread |
Post by: WorldCoin on May 22, 2013, 01:25:35 AM
I was able to compile in Ubuntu 12.04 without too much fuss.

Please feel free to upload and/or provide instructions for other users to compile and we will link to it.


Title: Re: [ANN] WorldCoin WDC | Official Developer Thread |
Post by: Coinbrah on May 22, 2013, 02:00:22 AM
Quick and dirty worldcoind compile on Ubuntu 12.04

Download and install dependencies:
Code:
sudo apt-get install build-essential 
sudo apt-get install libssl-dev
sudo apt-get install libdb4.8-dev
sudo apt-get install libdb4.8++-dev
sudo apt-get install libboost-all-dev
Recommended utilities:
Code:
sudo apt-get install git

Download the source code:

Code:
git clonehttps://github.com/worldcoinproject/Worldcoin.git

Navigate to src directory:

Code:
cd Worldcoin/src

Compile the damn thing:
Code:
make -j2 -f makefile.unix USE_UPNP=-

With no errors this should build worldcoin:
Code:
ls
worldcoind should appear as the last file in the Worldcoin/src directory
Code:
addrman.cpp      irc.cpp               netbase.h              serialize.h
addrman.h        irc.h                 net.cpp                strlcpy.h
allocators.h     json                  net.h                  sync.cpp
base58.h         key.cpp               noui.cpp               sync.h
bignum.h         key.h                 obj                    test
bitcoinrpc.cpp   keystore.cpp          obj-test               ui_interface.h
bitcoinrpc.h     keystore.h            protocol.cpp           uint256.h
checkpoints.cpp  libeay32.dll          protocol.h             util.cpp
checkpoints.h    main.cpp              qt                     util.h
compat.h         main.h                rpcdump.cpp            version.cpp
crypter.cpp      makefile.linux-mingw  rpcnet.cpp             version.h
crypter.h        makefile.mingw        rpcrawtransaction.cpp  wallet.cpp
db.cpp           makefile.osx          script.cpp             walletdb.cpp
db.h             makefile.unix         script.h               walletdb.h
init.cpp         mruset.h              scrypt.c               wallet.h
init.h           netbase.cpp           scrypt.h               worldcoind

Ok, almost done!

Create the worldcoin data directory:
Code:
mkdir ~/.worldcoin

Now make the conf file:
Code:
sudo nano ~/.worldcoin/worldcoin.conf

Put this stuff in there:
Code:
rpcuser=username
rpcpassword=password
rpcport=11082
port=11081
daemon=1
server=1
gen=0
listen=1
testnet=0
maxconnections=100

Ok. GO TIME!

In the same directory as the worldcoind file:
Code:
worldcoind -daemon

You should see:
Code:
worldcoin server start

Commands:
Code:
worldcoind getinfo
worldcoind stop
worldoind getaccountaddress ""

See https://en.bitcoin.it/wiki/Original_Bitcoin_client/API_calls_list for other commands.

Let me know if this works.

If it does. I graciously accept the following:

Love
WDC: WbE7NcXKEkQhsMyqnPxByFKfhqfFwdwH3P
LTC: LdZ5nUE9NnKKjwAGVVp4n2YVGPTM4zv2yN







Title: Re: [ANN] WorldCoin WDC | Official Developer Thread |
Post by: clint25n on May 22, 2013, 02:46:00 AM
Let me know if this works.

If it does. I graciously accept the follow:

Love
WDC: WbE7NcXKEkQhsMyqnPxByFKfhqfFwdwH3P
+25  ;)


Title: Re: [ANN] WorldCoin WDC | Official Developer Thread |
Post by: Twerka on May 22, 2013, 02:51:44 AM

Let me know if this works.

If it does. I graciously accept the follow:

Love
WDC: WbE7NcXKEkQhsMyqnPxByFKfhqfFwdwH3P
LTC: LdZ5nUE9NnKKjwAGVVp4n2YVGPTM4zv2yN


+5 WDC


Title: Re: [ANN] WorldCoin WDC | Official Developer Thread |
Post by: WorldCoin on May 22, 2013, 03:19:19 AM

If it does. I graciously accept the following:

Love
WDC: WbE7NcXKEkQhsMyqnPxByFKfhqfFwdwH3P
LTC: LdZ5nUE9NnKKjwAGVVp4n2YVGPTM4zv2yN







+25  :)


Title: Re: [ANN] WDC WorldCoin | Official Developer Thread |
Post by: WorldCoin on May 22, 2013, 03:21:13 AM
Lets get a working Android Wallet now  :)


Title: Re: [ANN] WDC WorldCoin | Official Developer Thread |
Post by: clint25n on May 22, 2013, 07:33:36 AM
I personally use Android and look forward to the thin client, though I wonder what it takes to develop something for iOS since there are so many  iPhone users out there as well.


Title: Re: [ANN] WDC WorldCoin | Official Developer Thread |
Post by: Twerka on May 22, 2013, 07:37:50 AM
I personally use Android and look forward to the thin client, though I wonder what it takes to develop something for iOS since there are so many  iPhone users out there as well.

I thnk you need an apple licence to make an iOs app.
For Android you can do it for free, and only pay if you want to be listed on google play.


Title: Re: [ANN] WDC WorldCoin | Official Developer Thread |
Post by: mr_random on May 22, 2013, 08:04:45 AM
I am a fulltime webdeveloper for a living and have commercial experience with php, mysql, javascript/jquery and have also worked with ruby and node.js. I can't help on apps, but if you think of any web based projects I could contribute towards let me know (has to be legal though)


Title: Re: [ANN] WDC WorldCoin | Official Developer Thread |
Post by: RaymanJr on May 22, 2013, 11:15:37 AM
Another quick and dirty compile on Ubuntu 12.04, this time for worldcoin-qt !

To be able to compiling worldcoin-qt you need to install Qt development libraries. (more details http://qt.nokia.com/downloads/ )
Code:
sudo apt-get update
sudo apt-get install qt4-dev-tools libqt4-dev libqt4-core libqt4-gui

Then download and install worldcoin-qt dependencies:
Code:
sudo apt-get install build-essential
sudo apt-get install libssl-dev
sudo apt-get install libdb4.8-dev
sudo apt-get install libdb++-dev
sudo apt-get install libqrencode-dev
sudo apt-get install libboost1.48-all-dev

If you don't yet have git, get it
Code:
sudo apt-get install git

Download the source code:
Code:
git clone https://github.com/worldcoinproject/Worldcoin.git

Go to newly create directory:
Code:
cd Worldcoin

Verify that you have 'worldcoin-qt.pro' in your Worldcoin directory:
Code:
ls

Following files/directories should be listed:
Code:
contrib  COPYING  doc  INSTALL  README  README.md  share  src  worldcoin-qt.pro

Build without UPNP support:
Code:
qmake "USE_UPNP=-"

Do the magic:
Code:
make

and ready for test run ! Launch your wallet application.
Code:
./worldcoin-qt

In the case you see this useful, I don't mind if you throw me with a coin..
WDC: WmVEK8sFawdB1RMKaub8atQhawzcbnS9Fr





Title: Re: [ANN] WDC WorldCoin | Official Developer Thread |
Post by: WorldCoin on May 22, 2013, 06:31:26 PM
+20 Ray!  :)


Title: Re: [ANN] WDC WorldCoin | Official Developer Thread |
Post by: maxpower on May 22, 2013, 06:43:50 PM
Hi! Posted this in the main WDC thread, and pizza suggested posting it here:

I've compiled a Mac version of the Worldcoin wallet. It works well on my Mac, and is way better than opening up Parallels to run the Windows wallet, so I'm sharing it in case anybody else finds it useful.

This build is from the latest Github sources as of this morning. I built the app on Mountain Lion, and I think it should work on Lion and above. I'm not so sure about Snow Leopard and below. Until a few other people try it out, I would treat it as beta software, and back up your wallet.dat early and often.

Give it a try, let me know how it works!

https://www.dropbox.com/s/958azh5o2lab3rg/Worldcoin-Qt-0.6.3.0-Mac.zip

I used the Mac compilation steps that we've been discussing on this thread: https://bitcointalk.org/index.php?topic=205017.0


Title: Re: [ANN] WDC WorldCoin | Official Developer Thread |
Post by: WorldCoin on May 22, 2013, 06:45:47 PM
Thanks for that Max, lets get some people to test it maybe even make a Thread so Mac users can see it, and we will put it up if it's working properly. Thank You for the help! :)


Title: Re: [ANN] WDC WorldCoin | Official Developer Thread |
Post by: maxpower on May 22, 2013, 06:48:00 PM
Thanks for that Max, lets get some people to test it maybe even make a Thread so Mac users can see it, and we will put it up if it's working properly. Thank You for the help! :)

No problem, it was a big help for me. :) I'll start a thread.


Title: Re: [ANN] WDC WorldCoin | Official Developer Thread |
Post by: clint25n on May 22, 2013, 09:36:09 PM
I am a fulltime webdeveloper for a living and have commercial experience with php, mysql, javascript/jquery and have also worked with ruby and node.js. I can't help on apps, but if you think of any web based projects I could contribute towards let me know (has to be legal though)

Are you good with web design artwork?


Title: Re: [ANN] WorldCoin WDC | Official Developer Thread |
Post by: swappermall on May 22, 2013, 10:07:39 PM
I tried the following suggestions and caught the error in the git clone command, but this did not work for me.  The following error was displayed after my unsuccessful use of this code:

:~/Worldcoin/src# make -j2 -f makefile.unix USE_UPNP=-
/bin/sh ../share/genbuild.sh obj/build.h
g++ -c -O2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DUSE_IPV6 -DBOOST_SPIRIT_THREADSAFE -I/root/Worldcoin/src -I/root/Worldcoin/src/obj -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -MMD -MF obj/checkpoints.d -o obj/checkpoints.o checkpoints.cpp
g++ -c -O2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DUSE_IPV6 -DBOOST_SPIRIT_THREADSAFE -I/root/Worldcoin/src -I/root/Worldcoin/src/obj -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -MMD -MF obj/netbase.d -o obj/netbase.o netbase.cpp
g++ -c -O2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DUSE_IPV6 -DBOOST_SPIRIT_THREADSAFE -I/root/Worldcoin/src -I/root/Worldcoin/src/obj -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -MMD -MF obj/addrman.d -o obj/addrman.o addrman.cpp
g++ -c -O2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DUSE_IPV6 -DBOOST_SPIRIT_THREADSAFE -I/root/Worldcoin/src -I/root/Worldcoin/src/obj -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -MMD -MF obj/crypter.d -o obj/crypter.o crypter.cpp
g++ -c -O2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DUSE_IPV6 -DBOOST_SPIRIT_THREADSAFE -I/root/Worldcoin/src -I/root/Worldcoin/src/obj -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -MMD -MF obj/key.d -o obj/key.o key.cpp
g++ -c -O2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DUSE_IPV6 -DBOOST_SPIRIT_THREADSAFE -I/root/Worldcoin/src -I/root/Worldcoin/src/obj -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -MMD -MF obj/db.d -o obj/db.o db.cpp
g++ -c -O2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DUSE_IPV6 -DBOOST_SPIRIT_THREADSAFE -I/root/Worldcoin/src -I/root/Worldcoin/src/obj -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -MMD -MF obj/init.d -o obj/init.o init.cpp
g++ -c -O2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DUSE_IPV6 -DBOOST_SPIRIT_THREADSAFE -I/root/Worldcoin/src -I/root/Worldcoin/src/obj -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -MMD -MF obj/irc.d -o obj/irc.o irc.cpp
g++ -c -O2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DUSE_IPV6 -DBOOST_SPIRIT_THREADSAFE -I/root/Worldcoin/src -I/root/Worldcoin/src/obj -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -MMD -MF obj/keystore.d -o obj/keystore.o keystore.cpp
g++ -c -O2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DUSE_IPV6 -DBOOST_SPIRIT_THREADSAFE -I/root/Worldcoin/src -I/root/Worldcoin/src/obj -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -MMD -MF obj/main.d -o obj/main.o main.cpp
main.cpp:17:53: fatal error: boost/random/uniform_int_distribution.hpp: No such file or directory
compilation terminated.
make: *** [obj/main.o] Error 1
make: *** Waiting for unfinished jobs....




Quick and dirty worldcoind compile on Ubuntu 12.04

Download and install dependencies:
Code:
sudo apt-get install build-essential 
sudo apt-get install libssl-dev
sudo apt-get install libdb4.8-dev
sudo apt-get install libdb4.8++-dev
sudo apt-get install libboost-all-dev
Recommended utilities:
Code:
sudo apt-get install git

Download the source code:

Code:
git clonehttps://github.com/worldcoinproject/Worldcoin.git

Navigate to src directory:

Code:
cd Worldcoin/src

Compile the damn thing:
Code:
make -j2 -f makefile.unix USE_UPNP=-

With no errors this should build worldcoin:
Code:
ls
worldcoind should appear as the last file in the Worldcoin/src directory
Code:
addrman.cpp      irc.cpp               netbase.h              serialize.h
addrman.h        irc.h                 net.cpp                strlcpy.h
allocators.h     json                  net.h                  sync.cpp
base58.h         key.cpp               noui.cpp               sync.h
bignum.h         key.h                 obj                    test
bitcoinrpc.cpp   keystore.cpp          obj-test               ui_interface.h
bitcoinrpc.h     keystore.h            protocol.cpp           uint256.h
checkpoints.cpp  libeay32.dll          protocol.h             util.cpp
checkpoints.h    main.cpp              qt                     util.h
compat.h         main.h                rpcdump.cpp            version.cpp
crypter.cpp      makefile.linux-mingw  rpcnet.cpp             version.h
crypter.h        makefile.mingw        rpcrawtransaction.cpp  wallet.cpp
db.cpp           makefile.osx          script.cpp             walletdb.cpp
db.h             makefile.unix         script.h               walletdb.h
init.cpp         mruset.h              scrypt.c               wallet.h
init.h           netbase.cpp           scrypt.h               worldcoind

Ok, almost done!

Create the worldcoin data directory:
Code:
mkdir ~/.worldcoin

Now make the conf file:
Code:
sudo nano ~/.worldcoin/worldcoin.conf

Put this stuff in there:
Code:
rpcuser=username
rpcpassword=password
rpcport=11082
port=11081
daemon=1
server=1
gen=0
listen=1
testnet=0
maxconnections=100

Ok. GO TIME!

In the same directory as the worldcoind file:
Code:
worldcoind -daemon

You should see:
Code:
worldcoin server start

Commands:
Code:
worldcoind getinfo
worldcoind stop
worldoind getaccountaddress ""

See https://en.bitcoin.it/wiki/Original_Bitcoin_client/API_calls_list for other commands.

Let me know if this works.

If it does. I graciously accept the following:

Love
WDC: WbE7NcXKEkQhsMyqnPxByFKfhqfFwdwH3P
LTC: LdZ5nUE9NnKKjwAGVVp4n2YVGPTM4zv2yN



Title: Re: [ANN] WDC WorldCoin | Official Developer Thread |
Post by: swappermall on May 22, 2013, 10:39:47 PM
Thank you RaymanJr.  Your suggestions worked for me.

2013-05-22 18:37:45   Withdrawal   WmVEK8sFawdB1RMKaub8atQhawzcbnS9Fr   0.90000000







Another quick and dirty compile on Ubuntu 12.04, this time for worldcoin-qt !

To be able to compiling worldcoin-qt you need to install Qt development libraries. (more details http://qt.nokia.com/downloads/ )
Code:
sudo apt-get update
sudo apt-get install qt4-dev-tools libqt4-dev libqt4-core libqt4-gui

Then download and install worldcoin-qt dependencies:
Code:
sudo apt-get install build-essential
sudo apt-get install libssl-dev
sudo apt-get install libdb4.8-dev
sudo apt-get install libdb++-dev
sudo apt-get install libqrencode-dev
sudo apt-get install libboost1.48-all-dev

If you don't yet have git, get it
Code:
sudo apt-get install git

Download the source code:
Code:
git clone https://github.com/worldcoinproject/Worldcoin.git

Go to newly create directory:
Code:
cd Worldcoin

Verify that you have 'worldcoin-qt.pro' in your Worldcoin directory:
Code:
ls

Following files/directories should be listed:
Code:
contrib  COPYING  doc  INSTALL  README  README.md  share  src  worldcoin-qt.pro

Build without UPNP support:
Code:
qmake "USE_UPNP=-"

Do the magic:
Code:
make

and ready for test run ! Launch your wallet application.
Code:
./worldcoin-qt

In the case you see this useful, I don't mind if you throw me with a coin..
WDC: WmVEK8sFawdB1RMKaub8atQhawzcbnS9Fr






Title: Re: [ANN] WDC WorldCoin | Official Developer Thread |
Post by: zacho56 on May 23, 2013, 03:29:42 AM
Welcome to the WorldCoin development thread! This is where we post projects we currently need and where developers can work on their own projects to support the coin.

Ideally when a project is done and posted, hero members should be able to confirm there is no malicious code and make sure there are no viruses.
We would like to thank you for your continued support and hopefully we can create some awesome stuff!

Currently Needed:
Fully Working Linux Port
Android Wallet – either brand new or incorporated into a current one


Sincerely,
WorldCoin Team

Hey, do you guys need a wiki? I'd love to set one up for you. I like this coin. Very professional. I do graphic design aswell so a logo on the wiki wouldn't be a problem. I sent you a PM, let me know! ;D


Title: Re: [ANN] WorldCoin WDC | Official Developer Thread |
Post by: Coinbrah on May 23, 2013, 03:35:58 AM
I tried the following suggestions and caught the error in the git clone command, but this did not work for me.  The following error was displayed after my unsuccessful use of this code:

:~/Worldcoin/src# make -j2 -f makefile.unix USE_UPNP=-
/bin/sh ../share/genbuild.sh obj/build.h
g++ -c -O2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DUSE_IPV6 -DBOOST_SPIRIT_THREADSAFE -I/root/Worldcoin/src -I/root/Worldcoin/src/obj -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -MMD -MF obj/checkpoints.d -o obj/checkpoints.o checkpoints.cpp
g++ -c -O2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DUSE_IPV6 -DBOOST_SPIRIT_THREADSAFE -I/root/Worldcoin/src -I/root/Worldcoin/src/obj -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -MMD -MF obj/netbase.d -o obj/netbase.o netbase.cpp
g++ -c -O2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DUSE_IPV6 -DBOOST_SPIRIT_THREADSAFE -I/root/Worldcoin/src -I/root/Worldcoin/src/obj -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -MMD -MF obj/addrman.d -o obj/addrman.o addrman.cpp
g++ -c -O2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DUSE_IPV6 -DBOOST_SPIRIT_THREADSAFE -I/root/Worldcoin/src -I/root/Worldcoin/src/obj -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -MMD -MF obj/crypter.d -o obj/crypter.o crypter.cpp
g++ -c -O2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DUSE_IPV6 -DBOOST_SPIRIT_THREADSAFE -I/root/Worldcoin/src -I/root/Worldcoin/src/obj -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -MMD -MF obj/key.d -o obj/key.o key.cpp
g++ -c -O2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DUSE_IPV6 -DBOOST_SPIRIT_THREADSAFE -I/root/Worldcoin/src -I/root/Worldcoin/src/obj -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -MMD -MF obj/db.d -o obj/db.o db.cpp
g++ -c -O2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DUSE_IPV6 -DBOOST_SPIRIT_THREADSAFE -I/root/Worldcoin/src -I/root/Worldcoin/src/obj -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -MMD -MF obj/init.d -o obj/init.o init.cpp
g++ -c -O2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DUSE_IPV6 -DBOOST_SPIRIT_THREADSAFE -I/root/Worldcoin/src -I/root/Worldcoin/src/obj -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -MMD -MF obj/irc.d -o obj/irc.o irc.cpp
g++ -c -O2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DUSE_IPV6 -DBOOST_SPIRIT_THREADSAFE -I/root/Worldcoin/src -I/root/Worldcoin/src/obj -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -MMD -MF obj/keystore.d -o obj/keystore.o keystore.cpp
g++ -c -O2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DUSE_IPV6 -DBOOST_SPIRIT_THREADSAFE -I/root/Worldcoin/src -I/root/Worldcoin/src/obj -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -MMD -MF obj/main.d -o obj/main.o main.cpp
main.cpp:17:53: fatal error: boost/random/uniform_int_distribution.hpp: No such file or directory
compilation terminated.
make: *** [obj/main.o] Error 1
make: *** Waiting for unfinished jobs....




Quick and dirty worldcoind compile on Ubuntu 12.04

Download and install dependencies:
Code:
sudo apt-get install build-essential 
sudo apt-get install libssl-dev
sudo apt-get install libdb4.8-dev
sudo apt-get install libdb4.8++-dev
sudo apt-get install libboost-all-dev
Recommended utilities:
Code:
sudo apt-get install git

Download the source code:

Code:
git clonehttps://github.com/worldcoinproject/Worldcoin.git

Navigate to src directory:

Code:
cd Worldcoin/src

Compile the damn thing:
Code:
make -j2 -f makefile.unix USE_UPNP=-

With no errors this should build worldcoin:
Code:
ls
worldcoind should appear as the last file in the Worldcoin/src directory
Code:
addrman.cpp      irc.cpp               netbase.h              serialize.h
addrman.h        irc.h                 net.cpp                strlcpy.h
allocators.h     json                  net.h                  sync.cpp
base58.h         key.cpp               noui.cpp               sync.h
bignum.h         key.h                 obj                    test
bitcoinrpc.cpp   keystore.cpp          obj-test               ui_interface.h
bitcoinrpc.h     keystore.h            protocol.cpp           uint256.h
checkpoints.cpp  libeay32.dll          protocol.h             util.cpp
checkpoints.h    main.cpp              qt                     util.h
compat.h         main.h                rpcdump.cpp            version.cpp
crypter.cpp      makefile.linux-mingw  rpcnet.cpp             version.h
crypter.h        makefile.mingw        rpcrawtransaction.cpp  wallet.cpp
db.cpp           makefile.osx          script.cpp             walletdb.cpp
db.h             makefile.unix         script.h               walletdb.h
init.cpp         mruset.h              scrypt.c               wallet.h
init.h           netbase.cpp           scrypt.h               worldcoind

Ok, almost done!

Create the worldcoin data directory:
Code:
mkdir ~/.worldcoin

Now make the conf file:
Code:
sudo nano ~/.worldcoin/worldcoin.conf

Put this stuff in there:
Code:
rpcuser=username
rpcpassword=password
rpcport=11082
port=11081
daemon=1
server=1
gen=0
listen=1
testnet=0
maxconnections=100

Ok. GO TIME!

In the same directory as the worldcoind file:
Code:
worldcoind -daemon

You should see:
Code:
worldcoin server start

Commands:
Code:
worldcoind getinfo
worldcoind stop
worldoind getaccountaddress ""

See https://en.bitcoin.it/wiki/Original_Bitcoin_client/API_calls_list for other commands.

Let me know if this works.

If it does. I graciously accept the following:

Love
WDC: WbE7NcXKEkQhsMyqnPxByFKfhqfFwdwH3P
LTC: LdZ5nUE9NnKKjwAGVVp4n2YVGPTM4zv2yN



Try to determine which version of boost you have. You need at least version 1.47 to compile Worldcoin. I used 1.48.

Code:
sudo apt-get install libboost1.48-all-dev

This should install the newer library.


Title: Re: [ANN] WorldCoin WDC | Official Developer Thread |
Post by: Coinbrah on May 23, 2013, 03:41:39 AM
I tried the following suggestions and caught the error in the git clone command, but this did not work for me.  The following error was displayed after my unsuccessful use of this code:

:~/Worldcoin/src# make -j2 -f makefile.unix USE_UPNP=-
/bin/sh ../share/genbuild.sh obj/build.h
g++ -c -O2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DUSE_IPV6 -DBOOST_SPIRIT_THREADSAFE -I/root/Worldcoin/src -I/root/Worldcoin/src/obj -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -MMD -MF obj/checkpoints.d -o obj/checkpoints.o checkpoints.cpp
g++ -c -O2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DUSE_IPV6 -DBOOST_SPIRIT_THREADSAFE -I/root/Worldcoin/src -I/root/Worldcoin/src/obj -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -MMD -MF obj/netbase.d -o obj/netbase.o netbase.cpp
g++ -c -O2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DUSE_IPV6 -DBOOST_SPIRIT_THREADSAFE -I/root/Worldcoin/src -I/root/Worldcoin/src/obj -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -MMD -MF obj/addrman.d -o obj/addrman.o addrman.cpp
g++ -c -O2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DUSE_IPV6 -DBOOST_SPIRIT_THREADSAFE -I/root/Worldcoin/src -I/root/Worldcoin/src/obj -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -MMD -MF obj/crypter.d -o obj/crypter.o crypter.cpp
g++ -c -O2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DUSE_IPV6 -DBOOST_SPIRIT_THREADSAFE -I/root/Worldcoin/src -I/root/Worldcoin/src/obj -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -MMD -MF obj/key.d -o obj/key.o key.cpp
g++ -c -O2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DUSE_IPV6 -DBOOST_SPIRIT_THREADSAFE -I/root/Worldcoin/src -I/root/Worldcoin/src/obj -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -MMD -MF obj/db.d -o obj/db.o db.cpp
g++ -c -O2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DUSE_IPV6 -DBOOST_SPIRIT_THREADSAFE -I/root/Worldcoin/src -I/root/Worldcoin/src/obj -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -MMD -MF obj/init.d -o obj/init.o init.cpp
g++ -c -O2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DUSE_IPV6 -DBOOST_SPIRIT_THREADSAFE -I/root/Worldcoin/src -I/root/Worldcoin/src/obj -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -MMD -MF obj/irc.d -o obj/irc.o irc.cpp
g++ -c -O2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DUSE_IPV6 -DBOOST_SPIRIT_THREADSAFE -I/root/Worldcoin/src -I/root/Worldcoin/src/obj -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -MMD -MF obj/keystore.d -o obj/keystore.o keystore.cpp
g++ -c -O2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DUSE_IPV6 -DBOOST_SPIRIT_THREADSAFE -I/root/Worldcoin/src -I/root/Worldcoin/src/obj -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -MMD -MF obj/main.d -o obj/main.o main.cpp
main.cpp:17:53: fatal error: boost/random/uniform_int_distribution.hpp: No such file or directory
compilation terminated.
make: *** [obj/main.o] Error 1
make: *** Waiting for unfinished jobs....




Quick and dirty worldcoind compile on Ubuntu 12.04

Download and install dependencies:
Code:
sudo apt-get install build-essential 
sudo apt-get install libssl-dev
sudo apt-get install libdb4.8-dev
sudo apt-get install libdb4.8++-dev
sudo apt-get install libboost-all-dev
Recommended utilities:
Code:
sudo apt-get install git

Download the source code:

Code:
git clonehttps://github.com/worldcoinproject/Worldcoin.git

Navigate to src directory:

Code:
cd Worldcoin/src

Compile the damn thing:
Code:
make -j2 -f makefile.unix USE_UPNP=-

With no errors this should build worldcoin:
Code:
ls
worldcoind should appear as the last file in the Worldcoin/src directory
Code:
addrman.cpp      irc.cpp               netbase.h              serialize.h
addrman.h        irc.h                 net.cpp                strlcpy.h
allocators.h     json                  net.h                  sync.cpp
base58.h         key.cpp               noui.cpp               sync.h
bignum.h         key.h                 obj                    test
bitcoinrpc.cpp   keystore.cpp          obj-test               ui_interface.h
bitcoinrpc.h     keystore.h            protocol.cpp           uint256.h
checkpoints.cpp  libeay32.dll          protocol.h             util.cpp
checkpoints.h    main.cpp              qt                     util.h
compat.h         main.h                rpcdump.cpp            version.cpp
crypter.cpp      makefile.linux-mingw  rpcnet.cpp             version.h
crypter.h        makefile.mingw        rpcrawtransaction.cpp  wallet.cpp
db.cpp           makefile.osx          script.cpp             walletdb.cpp
db.h             makefile.unix         script.h               walletdb.h
init.cpp         mruset.h              scrypt.c               wallet.h
init.h           netbase.cpp           scrypt.h               worldcoind

Ok, almost done!

Create the worldcoin data directory:
Code:
mkdir ~/.worldcoin

Now make the conf file:
Code:
sudo nano ~/.worldcoin/worldcoin.conf

Put this stuff in there:
Code:
rpcuser=username
rpcpassword=password
rpcport=11082
port=11081
daemon=1
server=1
gen=0
listen=1
testnet=0
maxconnections=100

Ok. GO TIME!

In the same directory as the worldcoind file:
Code:
worldcoind -daemon

You should see:
Code:
worldcoin server start

Commands:
Code:
worldcoind getinfo
worldcoind stop
worldoind getaccountaddress ""

See https://en.bitcoin.it/wiki/Original_Bitcoin_client/API_calls_list for other commands.

Let me know if this works.

If it does. I graciously accept the following:

Love
WDC: WbE7NcXKEkQhsMyqnPxByFKfhqfFwdwH3P
LTC: LdZ5nUE9NnKKjwAGVVp4n2YVGPTM4zv2yN



Try to determine which version of boost you have. You need at least version 1.47 to compile Worldcoin. I used 1.48.

Code:
sudo apt-get install libboost1.48-all-dev

This should install the newer library.


In fact, this is exactly the case.

Quote
main.cpp:17:53: fatal error: boost/random/uniform_int_distribution.hpp: No such file or directory
compilation terminated.

uniform_int_distribution.hpp is only available in version 1.47 and up.



Title: Re: [ANN] WorldCoin WDC | Official Developer Thread |
Post by: altsay on May 25, 2013, 02:03:22 PM
Quick and dirty worldcoind compile on Ubuntu 12.04

Download and install dependencies:
Code:
sudo apt-get install build-essential 
sudo apt-get install libssl-dev
sudo apt-get install libdb4.8-dev
sudo apt-get install libdb4.8++-dev
sudo apt-get install libboost-all-dev
Recommended utilities:
Code:
sudo apt-get install git

Download the source code:

Code:
git clonehttps://github.com/worldcoinproject/Worldcoin.git

Navigate to src directory:

Code:
cd Worldcoin/src

Compile the damn thing:
Code:
make -j2 -f makefile.unix USE_UPNP=-

With no errors this should build worldcoin:
Code:
ls
worldcoind should appear as the last file in the Worldcoin/src directory
Code:
addrman.cpp      irc.cpp               netbase.h              serialize.h
addrman.h        irc.h                 net.cpp                strlcpy.h
allocators.h     json                  net.h                  sync.cpp
base58.h         key.cpp               noui.cpp               sync.h
bignum.h         key.h                 obj                    test
bitcoinrpc.cpp   keystore.cpp          obj-test               ui_interface.h
bitcoinrpc.h     keystore.h            protocol.cpp           uint256.h
checkpoints.cpp  libeay32.dll          protocol.h             util.cpp
checkpoints.h    main.cpp              qt                     util.h
compat.h         main.h                rpcdump.cpp            version.cpp
crypter.cpp      makefile.linux-mingw  rpcnet.cpp             version.h
crypter.h        makefile.mingw        rpcrawtransaction.cpp  wallet.cpp
db.cpp           makefile.osx          script.cpp             walletdb.cpp
db.h             makefile.unix         script.h               walletdb.h
init.cpp         mruset.h              scrypt.c               wallet.h
init.h           netbase.cpp           scrypt.h               worldcoind

Ok, almost done!

Create the worldcoin data directory:
Code:
mkdir ~/.worldcoin

Now make the conf file:
Code:
sudo nano ~/.worldcoin/worldcoin.conf

Put this stuff in there:
Code:
rpcuser=username
rpcpassword=password
rpcport=11082
port=11081
daemon=1
server=1
gen=0
listen=1
testnet=0
maxconnections=100

Ok. GO TIME!

In the same directory as the worldcoind file:
Code:
worldcoind -daemon

You should see:
Code:
worldcoin server start

Commands:
Code:
worldcoind getinfo
worldcoind stop
worldoind getaccountaddress ""

See https://en.bitcoin.it/wiki/Original_Bitcoin_client/API_calls_list for other commands.

Let me know if this works.

If it does. I graciously accept the following:

Love
WDC: WbE7NcXKEkQhsMyqnPxByFKfhqfFwdwH3P
LTC: LdZ5nUE9NnKKjwAGVVp4n2YVGPTM4zv2yN

It gives me this error:

Code:
worldcoind: command not found


Title: Re: [ANN] WDC WorldCoin | Official Developer Thread |
Post by: maxpower on May 25, 2013, 03:51:00 PM
Try instead:

Code:
./worldcoind


Title: Re: [ANN] WDC WorldCoin | Official Developer Thread |
Post by: clint25n on May 26, 2013, 02:19:54 AM
Have a Dev working on a new wallet ATM.


Title: Re: [ANN] WorldCoin WDC | Official Developer Thread |
Post by: MobGod on May 29, 2013, 05:51:09 AM
Quick and dirty worldcoind compile on Ubuntu 12.04

Download and install dependencies:
Code:
sudo apt-get install build-essential 
sudo apt-get install libssl-dev
sudo apt-get install libdb4.8-dev
sudo apt-get install libdb4.8++-dev
sudo apt-get install libboost-all-dev
Recommended utilities:
Code:
sudo apt-get install git

Download the source code:

Code:
git clonehttps://github.com/worldcoinproject/Worldcoin.git

Navigate to src directory:

Code:
cd Worldcoin/src

Compile the damn thing:
Code:
make -j2 -f makefile.unix USE_UPNP=-

With no errors this should build worldcoin:
Code:
ls
worldcoind should appear as the last file in the Worldcoin/src directory
Code:
addrman.cpp      irc.cpp               netbase.h              serialize.h
addrman.h        irc.h                 net.cpp                strlcpy.h
allocators.h     json                  net.h                  sync.cpp
base58.h         key.cpp               noui.cpp               sync.h
bignum.h         key.h                 obj                    test
bitcoinrpc.cpp   keystore.cpp          obj-test               ui_interface.h
bitcoinrpc.h     keystore.h            protocol.cpp           uint256.h
checkpoints.cpp  libeay32.dll          protocol.h             util.cpp
checkpoints.h    main.cpp              qt                     util.h
compat.h         main.h                rpcdump.cpp            version.cpp
crypter.cpp      makefile.linux-mingw  rpcnet.cpp             version.h
crypter.h        makefile.mingw        rpcrawtransaction.cpp  wallet.cpp
db.cpp           makefile.osx          script.cpp             walletdb.cpp
db.h             makefile.unix         script.h               walletdb.h
init.cpp         mruset.h              scrypt.c               wallet.h
init.h           netbase.cpp           scrypt.h               worldcoind

Ok, almost done!

Create the worldcoin data directory:
Code:
mkdir ~/.worldcoin

Now make the conf file:
Code:
sudo nano ~/.worldcoin/worldcoin.conf

Put this stuff in there:
Code:
rpcuser=username
rpcpassword=password
rpcport=11082
port=11081
daemon=1
server=1
gen=0
listen=1
testnet=0
maxconnections=100

Ok. GO TIME!

In the same directory as the worldcoind file:
Code:
worldcoind -daemon

You should see:
Code:
worldcoin server start

Commands:
Code:
worldcoind getinfo
worldcoind stop
worldoind getaccountaddress ""

See https://en.bitcoin.it/wiki/Original_Bitcoin_client/API_calls_list for other commands.

Let me know if this works.

If it does. I graciously accept the following:

Love
WDC: WbE7NcXKEkQhsMyqnPxByFKfhqfFwdwH3P
LTC: LdZ5nUE9NnKKjwAGVVp4n2YVGPTM4zv2yN






I've tried this can you maybe tell me how to fix it please,this is my error
main.cpp:17:53: fatal error: boost/random/uniform_int_distribution.hpp: No such file or directory
compilation terminated.
make: *** [obj/main.o] Error 1
make: *** Waiting for unfinished jobs....
net.cpp: In function 'void ThreadDNSAddressSeed2(void*)':
net.cpp:1190:52: warning: comparison is always false due to limited range of data type [-Wtype-limits]


Title: Re: [ANN] WDC WorldCoin | Official Developer Thread |
Post by: WorldCoin on May 29, 2013, 06:21:29 AM
Have a Dev working on a new wallet ATM.

Sounds good, what kind of wallet? The android one? or a general one?


Title: Re: [ANN] WDC WorldCoin | Official Developer Thread |
Post by: MobGod on May 29, 2013, 06:27:15 AM
Have a Dev working on a new wallet ATM.

Sounds good, what kind of wallet? The android one? or a general one?
Android would be nice  ;D


Title: Re: [ANN] WorldCoin WDC | Official Developer Thread |
Post by: maxpower on May 29, 2013, 12:50:36 PM
I've tried this can you maybe tell me how to fix it please,this is my error
main.cpp:17:53: fatal error: boost/random/uniform_int_distribution.hpp: No such file or directory
compilation terminated.
make: *** [obj/main.o] Error 1
make: *** Waiting for unfinished jobs....
net.cpp: In function 'void ThreadDNSAddressSeed2(void*)':
net.cpp:1190:52: warning: comparison is always false due to limited range of data type [-Wtype-limits]

It sounds like you don't have all the boost libraries installed. I had to install libboost1.48-all-dev instead of libboost-all-dev to pick up the boost_random library. Another option might be to see if there's a separate package for the random library (it might be called something like libboost-random-dev) and install that.


Title: Re: [ANN] WDC WorldCoin | Official Developer Thread |
Post by: clint25n on June 05, 2013, 10:18:47 AM
Have a Dev working on a new wallet ATM.

Sounds good, what kind of wallet? The android one? or a general one?
Android would be nice  ;D

Android wallet is being developed now.


Title: Re: [ANN] WDC WorldCoin | Official Developer Thread |
Post by: brunozisterer on June 05, 2013, 04:22:03 PM
Need a Quick and dirty worldcoind compile on Debian. Please make a price quotation, in Worldcoins.
Thank's Bruno


Title: Re: [ANN] WDC WorldCoin | Official Developer Thread |
Post by: RogerMendes on November 19, 2013, 05:35:00 PM
Got the following error when running the "make -j2 -f makefile.unix USE_UPNP=-" command, any thoughts?

caju@caju:~/Worldcoin/src$ make -j2 -f makefile.unix USE_UPNP=-
/bin/sh ../share/genbuild.sh obj/build.h
g++ -c -O2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DUSE_IPV6 -DBOOST_SPIRIT_THREADSAFE -I/home/caju/Worldcoin/src -I/home/caju/Worldcoin/src/obj -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -MMD -MF obj/checkpoints.d -o obj/checkpoints.o checkpoints.cpp
g++ -c -O2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DUSE_IPV6 -DBOOST_SPIRIT_THREADSAFE -I/home/caju/Worldcoin/src -I/home/caju/Worldcoin/src/obj -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -MMD -MF obj/key.d -o obj/key.o key.cpp
In file included from main.h:14:0,
                 from checkpoints.cpp:12:
db.h:15:20: fatal error: db_cxx.h: No such file or directory
 #include <db_cxx.h>
                    ^
compilation terminated.
g++ -c -O2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DUSE_IPV6 -DBOOST_SPIRIT_THREADSAFE -I/home/caju/Worldcoin/src -I/home/caju/Worldcoin/src/obj -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -MMD -MF obj/db.d -o obj/db.o db.cpp
In file included from db.cpp:7:0:
db.h:15:20: fatal error: db_cxx.h: No such file or directory
 #include <db_cxx.h>
                    ^
compilation terminated.
make: *** [obj/checkpoints.o] Error 1
make: *** Waiting for unfinished jobs....
make: *** [obj/db.o] Error 1


Title: Re: [ANN] WDC WorldCoin | Official Developer Thread |
Post by: RogerMendes on November 19, 2013, 06:41:23 PM
So.... I guess the problem was in the libdb4.8-dev and libdb4.8++-dev... I think some of them wasn't found and didn't get installed and I didn't realize and tried to keep on going without noticing it.


If you face the same problem as I did, replace the following:
Code:
sudo apt-get install libdb4.8-dev 
sudo apt-get install libdb4.8++-dev

for the following:
Code:
sudo apt-get install libdb-dev 
sudo apt-get install libdb++-dev

also... after installing git, the command lacks a space after the clone parameter:
Replace this:
Code:
git clonehttps://github.com/worldcoinproject/Worldcoin.git
for this:
Code:
git clone https://github.com/worldcoinproject/Worldcoin.git

I'm still compiling it, so dunno if anything else will show up... so far so good, only a bunch of Warnings throughout the compiling proccess, a lot of defined but not used variables and functions, this should be fixed, I mean, if you want to implement a function for later use or that is not finished yet, then leave it as a comment, so there is no unnecessary burden to be compiled and we can have a nice clean compiling :)


Title: Re: [ANN] WDC WorldCoin | Official Developer Thread |
Post by: RogerMendes on November 19, 2013, 09:06:32 PM
Besides that to run the commands it's also necessary to put ./ before the worldcoined, which has already been pointed out by some other user.... so it's ./worldcoined whatevercommand

If anyone found any of the information I posted before useful and feel like donating some WTC:
WNk6BvJzRnHa63gZ2jCMeJbbo224pqa7GW


Title: Re: [ANN] WDC WorldCoin | Official Developer Thread |
Post by: Crystaleyes on December 08, 2013, 02:51:29 AM
Unfortunately none of the options worked for me.

 Kept being told that 'git clone https://github.com/worldcoinproject/Worldcoin.git' is not a git command...


Title: Re: [ANN] WDC WorldCoin | Official Developer Thread |
Post by: tiptopgemdotcom on January 23, 2014, 04:19:15 AM
I have tried this repeatedly.  It is bullshit that Worldcoin can not get its act together on this.  Why can't I just d/l from a repository???


Title: Re: [ANN] WDC WorldCoin | Official Developer Thread |
Post by: brunozisterer on April 07, 2014, 07:06:40 AM
New Worldcoin_qt update for Ubuntu-13.04

sudo apt-get update
sudo apt-get install qt4-dev-tools libqt4-dev libqt4-core libqt4-gui
sudo apt-get install build-essential
sudo apt-get install libssl-dev
sudo apt-get install libdb-dev
sudo apt-get install libdb++-dev
sudo apt-get install libqrencode-dev
sudo apt-get install libboost1.49-all-dev
sudo apt-get install git
git clone https://github.com/worldcoinproject/worldcoin-v0.8.git
cd worldcoin-v0.8
qmake "USE_UPNP=-"
make
./worldcoin-qt





Title: Re: [ANN] WDC WorldCoin | Official Developer Thread |
Post by: bestsponsor on April 08, 2014, 09:07:03 AM
Just  change only wallet under linux?