You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> **macOS Gatekeeper**: On first run, macOS may block the binary. Open System Settings > Privacy & Security and click "Allow Anyway", or run: `xattr -d com.apple.quarantine c2pool`
44
+
The DMG contains everything needed: the binary, bundled `libsecp256k1`, web dashboard,
45
+
config templates, block explorer, and a start script. No additional dependencies required.
46
+
47
+
> **macOS Gatekeeper**: On first run, macOS may block the binary. Open
48
+
> System Settings > Privacy & Security and click "Allow Anyway", or run:
49
+
> ```bash
50
+
> xattr -dr com.apple.quarantine ~/c2pool
51
+
>```
52
+
53
+
### Verifying the download
54
+
55
+
Each release includes a `SHA256SUMS` file. Verify your download:
56
+
57
+
```bash
58
+
shasum -a 256 c2pool-*-macos-*.dmg
59
+
# Compare output with the published SHA256SUMS
60
+
```
36
61
37
62
---
38
63
@@ -167,23 +192,90 @@ c2pool stores its data in `~/.c2pool/`:
167
192
168
193
---
169
194
170
-
## Universal binary (optional)
195
+
## Cross-compiling for arm64 on an Intel Mac
196
+
197
+
If you have an Intel Mac and want to build an arm64 binary (e.g. for distribution):
171
198
172
-
To build a fat binary that runs natively on both Intel and Apple Silicon:
199
+
### 1. Build secp256k1 for arm64
200
+
201
+
Homebrew's secp256k1 is native-only. Cross-compile from source:
0 commit comments