ModuleInterface: remark potential version differences between SDK and prebuilt modules

Prebuilt-module directory now contains a SystemVersion.plist file copied from the SDK
it's built from. This patch teaches the compiler to remark this version and the SDK version
when -Rmodule-interface-rebuild is specified. The difference between these versions could
help us debug unusable prebuilt modules.
This commit is contained in:
Xi Ge
2020-09-04 11:12:12 -07:00
parent 9d908ec4dc
commit 028a75572c
10 changed files with 85 additions and 48 deletions

View File

@@ -0,0 +1,6 @@
<plist version="1.0">
<dict>
<key>ProductBuildVersion</key>
<string>11111</string>
</dict>
</plist>

View File

@@ -0,0 +1,6 @@
<plist version="1.0">
<dict>
<key>ProductBuildVersion</key>
<string>22222</string>
</dict>
</plist>