Skip to content

Commit 013bf6b

Browse files
michaelblaessclaude
andcommitted
docs: Hinweis für Intel-Macs ergänzt
macos-latest ist bei GitHub seit Anfang 2024 Apple Silicon, die Release-Dateien sind also arm64. Auf einem Intel-Mac findet der Installer deshalb kein passendes Paket beziehungsweise die Programmdatei startet mit "bad CPU type in executable" gar nicht erst. Rosetta hilft dort nicht, es übersetzt x86 nach arm und nicht umgekehrt. Die README verweist jetzt in beiden Sprachen auf den Weg über den Quellcode (bootstrap.sh + run.sh), der auf beiden Architekturen funktioniert, weil uv ein zum Prozessor passendes Python holt. Ein eigener Intel-Build lohnt hier nicht: über alle bisherigen Releases hinweg wurde kein einziges macOS-Artefakt heruntergeladen. Nachrüsten wäre ein Zweizeiler in der Release-Matrix (macos-15-intel, laut GitHub bis August 2027 verfügbar), sobald sich jemand meldet. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
1 parent 731f0fb commit 013bf6b

2 files changed

Lines changed: 15 additions & 0 deletions

File tree

README.de.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,14 @@ curl -fsSL https://raw.githubusercontent.com/michaelblaess/console-error-scanner
4242
irm https://raw.githubusercontent.com/michaelblaess/console-error-scanner/main/install.ps1 | iex
4343
```
4444

45+
> **Intel-Macs:** Dort findet der Installer kein passendes Paket. Die fertigen
46+
> Programmdateien werden nur für Apple Silicon (arm64) gebaut, und Rosetta
47+
> hilft nicht - es übersetzt x86 nach arm, nicht umgekehrt. Nimm stattdessen
48+
> den Weg über den Quellcode: Repository klonen, einmalig `./bootstrap.sh`,
49+
> danach mit `./run.sh` starten. Dafür braucht es
50+
> [uv](https://docs.astral.sh/uv/), das ein zu Deinem Prozessor passendes
51+
> Python holt.
52+
4553
Danach ein neues Terminal öffnen und loslegen:
4654

4755
```bash

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,13 @@ curl -fsSL https://raw.githubusercontent.com/michaelblaess/console-error-scanner
4242
irm https://raw.githubusercontent.com/michaelblaess/console-error-scanner/main/install.ps1 | iex
4343
```
4444

45+
> **Intel Macs:** the installer finds no package there. Release binaries are
46+
> built for Apple Silicon (arm64) only, and Rosetta cannot help - it translates
47+
> x86 to arm, not the other way round. Run from source instead: clone the
48+
> repository, then `./bootstrap.sh` once and `./run.sh` to start. That route
49+
> needs [uv](https://docs.astral.sh/uv/), which fetches the Python matching
50+
> your processor.
51+
4552
Then open a new terminal and get started:
4653

4754
```bash

0 commit comments

Comments
 (0)