Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [PMC] Premine Coin | Rare | Mining Transaction Fee Proof of Concept
by
TheMightyX
on 28/06/2014, 13:59:55 UTC
the doc/build-unix.txt doesn't say about mkdir obj... And this builds only PreminePlusd, not PreminePlus-qt, was this intended?

Yea sorry I just saw you were talking about wallet-qt on ubuntu.
and I overwrote that file with the original one before I recreated the git  Undecided
Sorry I'm trying to do a million things at once.

I checked the tutorial you linked and you are right the pro file does force a specific boost version for windows compiling. This would break forwards compatibility on unix. I suppose we could set that to something like:

Code:
windows:LIBS += -lboost_system-mgw46-mt-sd-1_53 -lboost_filesystem-mgw46-mt-sd-1_53 -lboost_program_options-mgw46-mt-sd-1_53 -lboost_thread-mgw46-mt-sd-1_53
unix:LIBS += -lboost_system -lboost_filesystem -lboost_program_options -lboost_thread

Instead of:

Code:
LIBS += -lboost_system-mgw46-mt-sd-1_53 -lboost_filesystem-mgw46-mt-sd-1_53 -lboost_program_options-mgw46-mt-sd-1_53 -lboost_thread-mgw46-mt-sd-1_53

Or, we could just tell people to rename their boost folders on windows to remove version info. Its handy having the library version in the folder name though.

I'll make those changes to the pro file and push them.