Bitcoin Forum
April 24, 2024, 06:47:34 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 4 [5] 6 »  All
  Print  
Author Topic: Compiling Mac Clients for ANY Alt Coin, Your Choice!  (Read 14316 times)
pcmerc
Full Member
***
Offline Offline

Activity: 210
Merit: 100


View Profile
February 28, 2014, 08:03:17 PM
 #81

What other coins need OSX wallets? Please provide a list & I'll build them all.


pcmerc~
1713984454
Hero Member
*
Offline Offline

Posts: 1713984454

View Profile Personal Message (Offline)

Ignore
1713984454
Reply with quote  #2

1713984454
Report to moderator
Activity + Trust + Earned Merit == The Most Recognized Users on Bitcointalk
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1713984454
Hero Member
*
Offline Offline

Posts: 1713984454

View Profile Personal Message (Offline)

Ignore
1713984454
Reply with quote  #2

1713984454
Report to moderator
1713984454
Hero Member
*
Offline Offline

Posts: 1713984454

View Profile Personal Message (Offline)

Ignore
1713984454
Reply with quote  #2

1713984454
Report to moderator
1713984454
Hero Member
*
Offline Offline

Posts: 1713984454

View Profile Personal Message (Offline)

Ignore
1713984454
Reply with quote  #2

1713984454
Report to moderator
CaptEmulation
Full Member
***
Offline Offline

Activity: 134
Merit: 100


View Profile
February 28, 2014, 10:27:58 PM
 #82

For anyone who can get as far as successfully building a Mac wallet, here is a script I wrote to convert a release build into a DMG image (see below).

If you are building abccoin-Qt.app, you would type './makeImg.sh abccoin-Qt' and this script will take care of the rest!  The disk image will be in the output directory

Code:
#!/bin/sh

function createDmg {
  NAME=$1
  
  sudo macdeployqt ${NAME}.app
  sudo chown -R jdean ${NAME}.app/Contents/Frameworks/*
  mkdir -p ${NAME}
  [ -d ${NAME}/${NAME}.app ] &&  rm -rf ${NAME}/${NAME}.app
  cp -r ${NAME}.app ${NAME}/
  rm tmp_${NAME}.dmg
  hdiutil create tmp_${NAME}.dmg -srcfolder ${NAME}/
  mkdir -p output
  rm -rf output/*
  hdiutil convert -format UDZO -o output/${NAME}.dmg tmp_${NAME}.dmg
}

createDmg $1

etcdev
Full Member
***
Offline Offline

Activity: 132
Merit: 100


View Profile
March 18, 2014, 03:17:20 AM
 #83


pcmerc I would be extremely grateful if someone could compile Entropycoin - www.entropycoins.com

https://github.com/etcdev/EntropyCoins.git

If you want to sync after compiling:
rpcport=7552
server=1
gen=0
addnode=70.112.59.90

There is also a human mineable HTML5 game I built. Going to add a ton of coins once I can get mac wallet going so everyone can participate.
http://entropycoins.com/game

I have successfully compiled and run but can't deploy. I ran the CaptEmulation script after a successful build but unfortunately get - You can't open the application "Entropycoin-Qt" because it may be damaged or incomplete when run on Mavericks. I just updated git source with the makefile.osx and .pro file I've been using on Snow Leopard.

Will give coins. Thank you!
CaptEmulation
Full Member
***
Offline Offline

Activity: 134
Merit: 100


View Profile
March 18, 2014, 05:36:44 AM
 #84

I don't have Mavericks so I can't test, but you might want to try and compile the wallet with Qt 5.2-- which AFAIK has better Mavericks support.

First.Bitcoins
Legendary
*
Offline Offline

Activity: 1156
Merit: 1000


View Profile WWW
March 19, 2014, 06:19:10 PM
Last edit: March 26, 2014, 01:29:38 PM by First.Bitcoins
 #85

I am the lead of a new altcoin team, AppleBytes.

Anyone interested in helping on the MAC wallet?

Payment will be made in Bitcoin.

I compiled the MAC wallet and it runs on my MAC, but not other peoples, not sure what the issue is.

Some details here: Announce Thread



Founding Dev of ArtByte, the crypto supporting the arts, started in NYC - May 1, 2014 ArtByte.me
CaptEmulation
Full Member
***
Offline Offline

Activity: 134
Merit: 100


View Profile
March 19, 2014, 10:23:09 PM
 #86

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.

instacalm
Hero Member
*****
Offline Offline

Activity: 798
Merit: 500



View Profile
March 19, 2014, 11:29:31 PM
Last edit: March 19, 2014, 11:46:46 PM by instacash
 #87

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 <AppName.app> -dmg

does the same as your script above Wink
etcdev
Full Member
***
Offline Offline

Activity: 132
Merit: 100


View Profile
March 22, 2014, 05:38:50 AM
 #88

CaptEmulation. That script did the trick. Thank You!

Entropycoin wallet now available!
http://entropycoins.com/Content/Entropycoin-Qt-mac.zip
CaptEmulation
Full Member
***
Offline Offline

Activity: 134
Merit: 100


View Profile
March 23, 2014, 11:16:30 PM
 #89

As mentioned above, script is not really necessary (unless you want to template additional content into the DMG).  The quick-n-easy method is:
Code:
macdeployqt <AppName.app> -dmg
But glad I could help!

Alwin
Newbie
*
Offline Offline

Activity: 39
Merit: 0


View Profile
March 24, 2014, 09:23:53 AM
 #90

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



MystPhysX
Hero Member
*****
Offline Offline

Activity: 597
Merit: 500


View Profile
March 28, 2014, 06:27:25 PM
 #91

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.

bzyzny
Sr. Member
****
Offline Offline

Activity: 274
Merit: 254


View Profile
March 28, 2014, 07:02:24 PM
 #92

It would be much appreciated if you could build a Mac wallet for Blakecoin   Smiley
https://bitcointalk.org/index.php?topic=306894.0
MystPhysX
Hero Member
*****
Offline Offline

Activity: 597
Merit: 500


View Profile
March 29, 2014, 10:56:18 AM
 #93

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://bitcointalk.org/index.php?topic=306894.0

On it.

MystPhysX
Hero Member
*****
Offline Offline

Activity: 597
Merit: 500


View Profile
March 30, 2014, 03:00:10 PM
 #94

It would be much appreciated if you could build a Mac wallet for Blakecoin   Smiley
https://bitcointalk.org/index.php?topic=306894.0

On it.

Done, now available at chainexplorer.info.

anonymousxx1503
Hero Member
*****
Offline Offline

Activity: 532
Merit: 500


View Profile
April 20, 2014, 08:52:07 PM
 #95

There's a 0.05 BTC bounty for compiling a MAC QT client for Quebecoin. Anyone up for it?

https://bitcointalk.org/index.php?topic=552561.msg6310661#msg6310661

I'd like to thank eduffield and the other developers for this critically important evolution in virtual currency. DarkCoin is what bitcoin should have been. Some might call it "Bitcoin 2.0" but would do better by saying: "DarkCoin is digital cash." - Child Harold - February 28, 2014
https://bitcointalk.org/index.php?topic=421615.msg5424980#msg5424980
Kergekoin
Hero Member
*****
Offline Offline

Activity: 546
Merit: 500


View Profile
April 20, 2014, 09:04:06 PM
 #96

There's a 0.05 BTC bounty for compiling a MAC QT client for Quebecoin. Anyone up for it?

https://bitcointalk.org/index.php?topic=552561.msg6310661#msg6310661

for 2 Million MINT i will do it.  Cheesy

******  NB! The links below are affiliate - friend type links, which bring additional benefits both, to you and me  ******
Binance - Best Crypto Trading Platform          CoinBase - Fastest way from FIAT to Crypto
Windscribe - The quickest and easyest way to secure and anonymize your internet traffic
SL1M
Full Member
***
Offline Offline

Activity: 147
Merit: 100


View Profile
April 21, 2014, 10:37:22 AM
 #97

can somebody make or fix Fluttercoin wallet?
https://bitcointalk.org/index.php?topic=509499.msg6306278#msg6306278

menzo
Full Member
***
Offline Offline

Activity: 196
Merit: 100

CapriPay


View Profile WWW
April 21, 2014, 11:27:15 AM
 #98


what's the problem with the wallet?

CapriPay - Fast, Secure and Easy
CapriPay is a Free Payment Solution Provider supported by an integrated cashback solution and merchant marketing system through FREE mobile applications.
mammix2
Legendary
*
Offline Offline

Activity: 1302
Merit: 1004



View Profile
April 22, 2014, 05:31:33 PM
 #99

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 <AppName.app> -dmg

does the same as your script above Wink


Nice one @Instacash
That perl script is exactly what i needed  Grin

1HfpFYxBUpQ941mKd4DEjsyA22HN4Kerzu
mdtspain
Legendary
*
Offline Offline

Activity: 1076
Merit: 1003


View Profile
August 11, 2014, 07:17:36 AM
 #100

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?
Pages: « 1 2 3 4 [5] 6 »  All
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!