2017-01-18 7 views
1

Xcode 8.2でコマンドラインからビルドすると、これはバグですか? fbsimctl構築しようとしたときSDK 'MacOS 10.12'の製品タイプ 'Command-Line Tool'にコード署名が必要

私はこれを見ている:Xcodeのから構築、興味深いことに

=== BUILD TARGET fbsimctl OF PROJECT fbsimctl WITH CONFIGURATION Release === 

Check dependencies 
"fbsimctl" isn't code signed but requires entitlements. It is not possible to add entitlements to a binary without signing it. 
Code signing is required for product type 'Command-line Tool' in SDK 'macOS 10.12' 

** BUILD FAILED ** 


The following build commands failed: 
    Check dependencies 
(1 failure) 

brew tap facebook/fb 
brew install fbsimctl --HEAD 

==> Installing fbsimctl from facebook/fb 
==> Cloning https://github.com/facebook/FBSimulatorControl.git 
Updating /Users/lnatan/Library/Caches/Homebrew/fbsimctl--git 
==> Checking out branch master 
==> ./build.sh fbsimctl build /usr/local/Cellar/fbsimctl/HEAD-244a622 
Last 15 lines from /Users/lnatan/Library/Logs/Homebrew/fbsimctl/01.build.sh: 
cd /tmp/fbsimctl-20170118-36571-pwc8nx/fbsimctl 
/usr/bin/touch -c /tmp/fbsimctl-20170118-36571-pwc8nx/build/Build/Products/Debug/FBSimulatorControlKit.framework 

=== BUILD TARGET fbsimctl OF PROJECT fbsimctl WITH CONFIGURATION Debug ≡ 

Check dependencies 
"fbsimctl" isn't code signed but requires entitlements. It is not possible to add entitlements to a binary without signing it. 
Code signing is required for product type 'Command-line Tool' in SDK 'macOS 10.12' 

** BUILD FAILED ** 

The following build commands failed: 
Check dependencies 
(1 failure) 

If reporting this issue please do so at (not Homebrew/brew or Homebrew/core): 
https://github.com/facebook/homebrew-fb/issues 

を手動で構築しようとする代わりに、スクリプトを使用して、私は同様の問題を取得します成功する。

+0

export CODE_SIGNING_REQUIRED = NO && brew installを使用するfbsimctl --HEADはこの問題の回避策ですが、根本的な原因は不明です。 –

+0

あなたはこれに対する答えを見つけましたか?同じ作品で苦労している。 – OlivaresF

+1

残念ながら、いいえ。この回避策は機能します。 –

答えて

0

あなたはそれがインストール手順からだ

export CODE_SIGNING_REQUIRED=NO && brew install fbsimctl --HEAD 

をコード署名を無効にするには、ENV変数でこれを実行する必要があります。

+0

私はそれらの指示を提供した人でした:https://github.com/facebook/FBSimulatorControl/issues/342 –

+0

私は見る!ありがとう! – MoOx

関連する問題