-
Notifications
You must be signed in to change notification settings - Fork 309
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
darwin-arm64プラットフォーム対応 #2112
Merged
Merged
darwin-arm64プラットフォーム対応 #2112
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ちょっとお聞きしたいことがあります!
--force --deep
でのcodesignは、署名済みファイルもad-hoc署名で上書きされてしまいますか?もし上書きされるなら、顕著な問題ではありませんが、避けておきたい問題かもしれません。
--force
でのcodesignが必要なファイルのみad-hoc署名する、ということはできそうでしょうか・・・?(
vv-engine/run
だけ署名すれば問題ない・・・?)難しければ、FIXMEコメントを書きつつ様子見でも良いかもしれません。
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
両者の違いを見ると、以下の変更が発生しました。
Contents/_CodeSignature/
ディレクトリの追加Contents/MacOS/
ディレクトリ内の実行ファイル(README.txt
を除く)の最終変更日時とファイルサイズの変更(コード署名されたと推測)質問に答えると
他のファイルには問題ありませんが、
7zz
が既に署名されていた場合は上書きされると推測されます。.appディレクトリを署名するには
--deep
フラグが必要であり、この場合、--force
の有無に関わらず上記のような動作をします。したがって、答えは不可能です。ただし、解決策があります。上記に挙げられた箇所以外では署名が行われないようなので、署名したくないファイルを他の場所(例:
Resources
、Frameworks
、Plugins
?(ここはよくわかりませんが))に移動すれば良いと思います。結局これも.appディレクトリの構造に関することなので、別に
FIXME
コメントを書かなくても大丈夫でしょうか?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
7zz
の署名情報を確認してみました。7zz
は macOS の場合、ビルド時に次のリンクからダウンロードされたものをパッケージに含めます:voicevox/build/download7z.js
Line 42 in b0c800e
この
7zz
の署名情報を確認したところ、以下のようにSignature=adhoc
と表示されているので、今のところ署名を上書きしても問題はないと考えられます。今後証明書を用意してコード署名することがある場合は、むしろ積極的に署名しなければなりません:There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
なるほどです!!
そもそも、企業により正しく署名されたファイルがadhoc署名に置き換わってしまう、ということを懸念していました。
今手元で調べてみると、Pythonですらadhoc署名でした。
libonnxruntime.dylibはadhoc署名すらされていませんでした!
つまり「企業により正しく署名されたファイル」はほとんど無い、というふうに考えが変わりました。
@nix6839 情報ありがとうございます!
なるほど、
.app
の署名は特別だったんですね!!丁寧にありがとうございます。FIXMEもなくて大丈夫だと思います!
@PickledChair 検証ありがとうございます!
たぶん
*.dylib
系もadhoc署名されていると思います。もともとadhocか、署名なしだと思いますが 😇