|
nmersulypnem
|
 |
July 11, 2013, 04:34:51 AM |
|
Doesn't work, needs libgcc DLL.
Sorry about that, I will recompile with static. Actually, I'm having that problem as well - how do you compile embedding the DLLs? Add '-static' to the end of the LDFLAGS in the makefile. That doesn't seem to help. I notice the primecoin-qt.exe is only 8MB compared to 22MB for the original. It runs as long as I have the DLLS in the system windows path, but that's annoying to do on multiple machines. Do I need to include the /bin/ dirs somewhere in the makefile? Something is not linking... Dude, you first have to have static libs to link against. Isn't that why I include all this stuff.... INCLUDEPATHS= \ -I"$(CURDIR)" \ -I"c:/deps/boost_1_54_0" \ -I"c:/deps/db-4.8.30.NC/build_unix" \ -I"c:/deps/openssl-1.0.1e/include" LIBPATHS= \ -L"$(CURDIR)/leveldb" \ -L"c:/deps/boost_1_54_0/stage/lib" \ -L"c:/deps/db-4.8.30.NC/build_unix" \ -L"c:/deps/openssl-1.0.1e" \ -L"C:/Qt/4.8.5/lib" \ -L"C:/Qt/4.8.5" LIBS= \ -l leveldb \ -l memenv \ -l boost_system$(BOOST_SUFFIX) \ -l boost_filesystem$(BOOST_SUFFIX) \ -l boost_program_options$(BOOST_SUFFIX) \ -l boost_thread$(BOOST_SUFFIX) \ -l boost_chrono$(BOOST_SUFFIX) \ -l db_cxx \ -l ssl \ -l crypto Okay, you probably aren't a coder, so let me explain. There are two types of libraries, static and dynamic. Static libraries are literally included inside the executable file, dynamic libraries are not. Most apps use dynamic libraries these days, because they only have to be loaded into memory once, and then everything that needs it can access it. Because of this, when you build a library like Boost, usually you build dynamic libraries. Dynamic libraries on Windows are DLL files, that's how you can tell. No, I totally understand all that. What I don't understand is literally where I specify that a specific library should be static vs dynamic. I put the -static flag in the build command (along with a few other variations), but it didn't change anything. I listed the LIBS above because I thought maybe I f'd up a path that would be obvious to someone else... :/
|
|
|
|
|
|
Arcas
|
 |
July 11, 2013, 04:37:55 AM |
|
At the current pace of difficulty, block reward will be less than 1 XPM in 25 days. You are looking at a massive spike in valuation when people realize this coin will have a very limited supply.
Like I said, speculation rarely keeps up with minting after the hype in Altcoins, and the fact that I made $40 just running my i7 desktop for 3 days makes me very cautious about the valuation.
|
|
|
|
|
|
drummerjdb666
|
 |
July 11, 2013, 04:57:37 AM |
|
 Whoever just bought 50 primes @ .0004 your welcome!!! I made my first exchange booboo!!!  Makes me very sad! I meant to put the order and leave it for .004  I'm gonna go break something like a lunatic now over 20$ worth of btc lost lol..
|
|
|
|
|
|
ReCat
|
 |
July 11, 2013, 05:01:29 AM |
|
while you're at it, do that with fontas's neck for all the shit he caused us
|
BTC: 1recatirpHBjR9sxgabB3RDtM6TgntYUW Hold onto what you love with all your might, Because you can never know when - Oh. What you love is now gone.
|
|
|
|
drummerjdb666
|
 |
July 11, 2013, 05:06:43 AM |
|
while you're at it, do that with fontas's neck for all the shit he caused us
I'm down! I wish the person that bought that saw it and felt pitty to where he at least sent me 25 back.. shame we live in a world where greed makes me want to tell people to kill themselves and do bad things to there pets.. And because i don't care.. and despite i don't know what your talking about?! hey fontas! FUCK YOU!
|
|
|
|
|
|
Beave162
|
 |
July 11, 2013, 05:12:11 AM |
|
There was no trade executed for 0.0004...
|
YaCoin: YL5kf54wPPXKsXd5T18xCaNkyUsS1DgY7z BitCoin: 14PFbLyUdTyxZg3V8hnvj5VXkx3dhthmDj
|
|
|
AgentME
Member


Activity: 84
Merit: 10
|
 |
July 11, 2013, 05:16:11 AM |
|
You coders are so cute, but you know nothing about the economics of money--like everyone else.
+1 Informative post that added to the discussion /s
|
|
|
|
|
AgentME
Member


Activity: 84
Merit: 10
|
 |
July 11, 2013, 05:19:21 AM |
|
It's a smart idea, but mathematically, Primecoin is on a race to the bottom, so I have to play a little Game Theory. $40 for just typing setgenerate true 3 days ago is clearly unsustainable, sooo http://www.youtube.com/watch?v=HX0fIi3H-esIt worked for bitcoin. Okay, that's a hard one to measure up to. It worked for litecoin. Primecoin seems to be similar to litecoin in that cpu miners are competitive, but it actually does it in a less artificial and interesting way.
|
|
|
|
|
|
nmersulypnem
|
 |
July 11, 2013, 05:27:13 AM |
|
Doesn't work, needs libgcc DLL.
Sorry about that, I will recompile with static. Actually, I'm having that problem as well - how do you compile embedding the DLLs? Add '-static' to the end of the LDFLAGS in the makefile. That doesn't seem to help. I notice the primecoin-qt.exe is only 8MB compared to 22MB for the original. It runs as long as I have the DLLS in the system windows path, but that's annoying to do on multiple machines. Do I need to include the /bin/ dirs somewhere in the makefile? Something is not linking... Dude, you first have to have static libs to link against. Isn't that why I include all this stuff.... ... Okay, you probably aren't a coder, so let me explain. There are two types of libraries, static and dynamic. Static libraries are literally included inside the executable file, dynamic libraries are not. Most apps use dynamic libraries these days, because they only have to be loaded into memory once, and then everything that needs it can access it. Because of this, when you build a library like Boost, usually you build dynamic libraries. Dynamic libraries on Windows are DLL files, that's how you can tell. No, I totally understand all that. What I don't understand is literally where I specify that a specific library should be static vs dynamic. I put the -static flag in the build command (along with a few other variations), but it didn't change anything. I listed the LIBS above because I thought maybe I f'd up a path that would be obvious to someone else... :/ See bold above. You probably didn't BUILD the static libs. I built everything per the instructions, using b2 --build-type=complete I see the linux variants of the static libraries "*.a". I'm not clear where the static libraries go... Do they end in .lib always?
|
|
|
|
|
kelsey
Legendary

Activity: 1876
Merit: 1000
|
 |
July 11, 2013, 05:29:34 AM |
|
 Whoever just bought 50 primes @ .0004 your welcome!!! I made my first exchange booboo!!!  Makes me very sad! I meant to put the order and leave it for .004  I'm gonna go break something like a lunatic now over 20$ worth of btc lost lol.. no trades for .0004 lowest was 0.00110001, so maybe that trade of 50 split between (0.00110001 and 0.00110005) ?
|
|
|
|
|
TheSpiral
Full Member
 

Activity: 322
Merit: 113
Sinbad Mixer: Mix Your BTC Quickly
|
 |
July 11, 2013, 05:30:43 AM |
|
Being added to mcxnow.com at the moment. Bring your volume. (Down to be added)
|
|
|
|
|
|
|
|
drummerjdb666
|
 |
July 11, 2013, 05:35:16 AM |
|
There was no trade executed for 0.0004...
from coin-e Sell 11-Jul-13 00:46:52 0.00040000 50.00000000 0.00000000 Executed yea! i see why people say not to trade while drinking.. headache meds can be the same  and to think this morning i could have bought the awesome buy orders and made 1.5btc FML!!!seriously if this purchase was one of you guys that's coin rich.. it would be cool if you at least give me half the buy back lol.. i say this because stranger things have happened.. to me especially.. i'm fucking entitled!
|
|
|
|
|
|
RustyShackleford1950
|
 |
July 11, 2013, 05:36:38 AM |
|
Has anyone got a block recently?
|
On keyboard, the big d, rusty shackleford
|
|
|
|
SRoulette
|
 |
July 11, 2013, 05:41:37 AM |
|
Has anyone got a block recently?
yes, steady flow of them. 1 just as i typed this sentence.
|
|
|
|
SALHERO
Member


Activity: 112
Merit: 10
|
 |
July 11, 2013, 05:41:53 AM |
|
me!!! 2 blocks 
|
|
|
|
|
|
Beave162
|
 |
July 11, 2013, 05:46:18 AM |
|
There was no trade executed for 0.0004...
from coin-e Sell 11-Jul-13 00:46:52 0.00040000 50.00000000 0.00000000 Executed yea! i see why people say not to trade while drinking.. headache meds can be the same  and to think this morning i could have bought the awesome buy orders and made 1.5btc FML!!!seriously if this purchase was one of you guys that's coin rich.. it would be cool if you at least give me half the buy back lol.. i say this because stranger things have happened.. to me especially.. i'm fucking entitled! What your coins actually sold for.... 11-Jul-13 00:46:53 0.00200000 1.85000000 0.00370000 11-Jul-13 00:46:54 0.00110005 42.20000000 0.04642211 11-Jul-13 00:46:56 0.00110001 5.95000000 0.00654506 Do I get a cut of the difference between what you thought you sold for and what you actually sold for? AbPD4fktQq1tx7dmGwM2wXc9zqs1Qp2MRA if you have any more xpm thanks
|
YaCoin: YL5kf54wPPXKsXd5T18xCaNkyUsS1DgY7z BitCoin: 14PFbLyUdTyxZg3V8hnvj5VXkx3dhthmDj
|
|
|
|
RustyShackleford1950
|
 |
July 11, 2013, 05:47:08 AM |
|
Has anyone got a block recently?
yes, steady flow of them. 1 just as i typed this sentence. primespersec?
|
On keyboard, the big d, rusty shackleford
|
|
|
|
GSnak
|
 |
July 11, 2013, 05:47:40 AM |
|
How many people running botnets/server farms?
|
|
|
|
|
kelsey
Legendary

Activity: 1876
Merit: 1000
|
 |
July 11, 2013, 05:53:58 AM |
|
There was no trade executed for 0.0004...
from coin-e Sell 11-Jul-13 00:46:52 0.00040000 50.00000000 0.00000000 Executed but you must have gotten 2.5x that ammount as it cost the buyers 0.0010001 and 0.0010005
|
|
|
|
|
|