Avatar
omochimetaru 6/26/2024 5:17 AM
なるほど
5:21 AM
Explicit Module Builds Explicit module builds are an attempt to move the compilation of textual modules into binary modules out of the Swift compiler instance that imports the module, and up into the build system as an explicit compilation step.
5:22 AM
テキストモジュールをバイナリモジュールに変換するプロセスを、(従来暗黙であった)コンパイラでの処理をするのをやめて、ビルドシステムにおける(明示的な)ステップの一つとする
5:23 AM
と書いてあるな 孫依存の話はその後の「Fast Dependency Scanner」かな
5:24 AM
The output of the dependency scanner is a graph of all of the dependencies of that Swift module, included every module that will be imported (directly or indirectly).
コンパイラに依存スキャナモードが実装されたよ、直接や間接を列挙するよ、と言ってそう
5:25 AM
explicit module buildは依存対象を(孫依存を禁じて)explicitに宣言するスタイルにするものかと思ったけど違う? (edited)