Pages:
Author

Topic: Compiling Mac Clients for ANY Alt Coin, Your Choice! (Read 14318 times)

newbie
Activity: 43
Merit: 0
Can someone compile this wallet right here:

https://github.com/schillingcoin/schillingcoin
copper member
Activity: 14
Merit: 0
If you need help PM me

Hey fellow Mac users, the past couple of days I went through the process of compiling the newest version of the MNC-qt client for Mac OS X. Lemme tell you, if you don't know what you're doing, it's a tremendous pain in the ass. Have to download a ton of dependencies, the QT SDK and QT Creator IDE, get the project file set up correctly for OS X, then screw around with packaging all of the library files into the .app so that other users don't have to have the dependencies installed.

It took me at least 4 hours to figure all this crap out and get a Mac version of mincoin-qt published (link below).

All of that being said... if you would like me to put my knowledge to good use and compile a Mac binary of any other alt coin client, either reply here or PM me and I will do so. Bounties/Donations would be VERY MUCH appreciated in whatever currency you have as this process is time intensive, at least for me. I'm including my BTC, LTC, and MNC addresses here since those are the coins I primarily trade in. If you'd rather donate a different coin let me know.

P.S. If you're worried about me inserting a trojan or anything like that, all I can tell you is that I'm not that smart, and I guess you'll have to take my word for it. I'm perfectly happy to share the exactly source I use (which will come straight from the coin's dev) and the details of the process, which is quite boring.

MinCoin-qt Version 0.6.3.0-g6e015e3-beta for Mac OS X:  https://dl.dropboxusercontent.com/u/7405118/MinCoin-Qt_v063.zip

Donations:
BTC - 1Eq5zJJTcQ9RywuKUjfsYxmEAiS7toQAoQ
LTC - LehmtWhrd3TNTgKfyVwSEWNg1ctkwmkWu9
MNC - MRMhVXatmuLxAieaiV4pntMbZrdQCHtUf6

hi
I have seen your posts about compiling wallets for mac OS
i was wondering if you would be able to help me compiling one for me
please PM me

thanks
copper member
Activity: 14
Merit: 0
Looking for someone for wallet development for MAC and if possible Mobile iOS/Android

PM ME
newbie
Activity: 44
Merit: 0
Hey fellow Mac users, the past couple of days I went through the process of compiling the newest version of the MNC-qt client for Mac OS X. Lemme tell you, if you don't know what you're doing, it's a tremendous pain in the ass. Have to download a ton of dependencies, the QT SDK and QT Creator IDE, get the project file set up correctly for OS X, then screw around with packaging all of the library files into the .app so that other users don't have to have the dependencies installed.

It took me at least 4 hours to figure all this crap out and get a Mac version of mincoin-qt published (link below).

All of that being said... if you would like me to put my knowledge to good use and compile a Mac binary of any other alt coin client, either reply here or PM me and I will do so. Bounties/Donations would be VERY MUCH appreciated in whatever currency you have as this process is time intensive, at least for me. I'm including my BTC, LTC, and MNC addresses here since those are the coins I primarily trade in. If you'd rather donate a different coin let me know.

P.S. If you're worried about me inserting a trojan or anything like that, all I can tell you is that I'm not that smart, and I guess you'll have to take my word for it. I'm perfectly happy to share the exactly source I use (which will come straight from the coin's dev) and the details of the process, which is quite boring.

MinCoin-qt Version 0.6.3.0-g6e015e3-beta for Mac OS X:  https://dl.dropboxusercontent.com/u/7405118/MinCoin-Qt_v063.zip

Donations:
BTC - 1Eq5zJJTcQ9RywuKUjfsYxmEAiS7toQAoQ
LTC - LehmtWhrd3TNTgKfyVwSEWNg1ctkwmkWu9
MNC - MRMhVXatmuLxAieaiV4pntMbZrdQCHtUf6

hi
I have seen your posts about compiling wallets for mac OS
i was wondering if you would be able to help me compiling one for me
please PM me

thanks
member
Activity: 124
Merit: 10
I need a mac wallet compiled. Can pay in eth or bounties
newbie
Activity: 37
Merit: 0
I need wallet gui for mac for NPCcoin. Rewards of 200 NPC for developer. PM
newbie
Activity: 46
Merit: 0
Who can create a wallet from the source for MacOS X?
member
Activity: 113
Merit: 23
Dreams are realities un-manifested.
Bump to this thread.

Team PiggyCoin is looking for assistance in building the PiggyStakes Mac wallet (PiggyCoin). I would have no problems trying myself, however have no access to a Mac. If you can lend a hand let me know your bounty.

Oink Oink.
sr. member
Activity: 249
Merit: 250
Hello, was anybody able to compile with yosemite 10.1 and xcode 6.1?

I am getting really mad with boost, leveldb and db48 linking...
full member
Activity: 138
Merit: 100
More stuff will come.
Hi guys,

I have a problem with prepairing the wallet for distribution.

I compile the wallet without any problem for local use, but when I need to prepair it for distro then every time it seems that the package is incomplete or maybe the links are not correct.

I check the links with otool and change .dylib libaries to @executable_path, but the wallet only works on my own computer.

Any help?

have you tried macdeployqt?
legendary
Activity: 1076
Merit: 1003
Hi guys,

I have a problem with prepairing the wallet for distribution.

I compile the wallet without any problem for local use, but when I need to prepair it for distro then every time it seems that the package is incomplete or maybe the links are not correct.

I check the links with otool and change .dylib libaries to @executable_path, but the wallet only works on my own computer.

Any help?
legendary
Activity: 1302
Merit: 1004
can anyone take a look at this and see what they suggest i do for this error ?
src/scrypt-x86_64.S:178:9: error: invalid alignment value
 .align 32
        ^
[...]
make: *** [build/scrypt-x86_64.o] Error 1

Hi MobGod,

to fix that issue, you have to convert the assembler macros of scrypt-x86_64.S to C preprocessor ones;  then add -pthread -no-integrated-as to the qmake cflags. That'll fix the issue.  Use this script: https://github.com/iongchun/cpuminer/blob/cpumine/nomacro.pl

1. convert assembler macros
Code:
sudo perl nomacro.pl scrypt-x86_64.S

2. add -no-integrated-as to the macx qmake cflags in the qmake project file.
Code:
macx:QMAKE_CFLAGS_THREAD += -pthread -no-integrated-as


You need to run macdeployqt on the .app in order to package the libraries and frameworks within the .app.  As compiled, the application will point to the libraries and frameworks wherever they are on the developers machine.  The script I posted above will run this as well as package the resulting deployed app into a DMG image.

I looked, but I did not see a github repo anywhere for AppleByte.

Hi CaptEmulation, the built in dmg flag:
Code:
macdeployqt -dmg

does the same as your script above Wink


Nice one @Instacash
That perl script is exactly what i needed  Grin
full member
Activity: 196
Merit: 100
CapriPay
can somebody make or fix Fluttercoin wallet?
https://bitcointalksearch.org/topic/m.6306278



what's the problem with the wallet?
full member
Activity: 147
Merit: 100
can somebody make or fix Fluttercoin wallet?
https://bitcointalksearch.org/topic/m.6306278

hero member
Activity: 546
Merit: 500
There's a 0.05 BTC bounty for compiling a MAC QT client for Quebecoin. Anyone up for it?

https://bitcointalksearch.org/topic/m.6310661

for 2 Million MINT i will do it.  Cheesy
hero member
Activity: 532
Merit: 500
There's a 0.05 BTC bounty for compiling a MAC QT client for Quebecoin. Anyone up for it?

https://bitcointalksearch.org/topic/m.6310661
hero member
Activity: 597
Merit: 500
hero member
Activity: 597
Merit: 500
Hello All,

Can someone compile a Mac wallet for LiteBar?
https://github.com/rspublishing/litebar

(I will donate 15 LiteBar for this Mac wallet Smiley




I'm on it.
Done, now hosted at chainexplorer.info (the silver one)

It would be much appreciated if you could build a Mac wallet for Blakecoin   Smiley
https://bitcointalksearch.org/topic/annblc-blakecoin-blake-256-for-gpufpga-with-merged-mined-pools-stable-net-306894

On it.
sr. member
Activity: 274
Merit: 254
hero member
Activity: 597
Merit: 500
Hello All,

Can someone compile a Mac wallet for LiteBar?
https://github.com/rspublishing/litebar

(I will donate 15 LiteBar for this Mac wallet Smiley




I'm on it.
Pages:
Jump to: