【Xcode】Failed to launch process. Failed to attach to stub for playground executionの解決方法
この記事からわかること
- Failed to launch process. Failed to attach to stub for playground execution: error: debugserver is ×86_64 binary running in translation, attached failed..とは?
- Xcode>playgroundで発生したエラー
- ビルドできない原因と解決法
index
[open]
\ アプリをリリースしました /
友達や家族の誕生日をメモ!通知も届く-みんなの誕生日-
posted withアプリーチ
Failed to launch process. Failed to attach to stub for playground executionの解決方法
XcodeのPlayGroundを久しぶりに起動したら以下のエラーが発生しビルドできない状態になっていました。
発生したエラー
Failed to launch process. Failed to attach to stub for playground execution: error: debugserver is ×86_64 binary running in translation, attached failed..
翻訳
プロセスの起動に失敗しました。 プレイグラウンド実行のためのスタブへの接続に失敗しました: エラー: デバッグサーバーは変換中に実行中の ×86_64 バイナリです。接続に失敗しました。
解決方法
エラーメッセージを見ると「×86_64」と書いてあるのでアーキテクチャ絡みのエラーであることがわかります。となると答えは1つでRosetta2を利用していることが思い浮かびました。
そのためXcodeアプリケーションを右クリックして「情報を見る」>「Rosettaを利用して開く」のチェックを外すことで解決することができました。(画像はターミナルでごめんなさい。)
ご覧いただきありがとうございました。