Closed futureimperfect closed 4 years ago
The DriverKit SDK can appear in the output from xcodebuild -showsdks, and as such macosx19.0 is parsed as a macOS SDK in build scripts, causing them to fail. This change explicitly excludes the DriverKit SDK, which fixed the build script(s) for me.
xcodebuild -showsdks
macosx19.0
$ xcodebuild -showsdks <snip> macOS SDKs: DriverKit 19.0 -sdk driverkit.macosx19.0 macOS 10.15 -sdk macosx10.15 </snip>
Thank you!
The DriverKit SDK can appear in the output from
xcodebuild -showsdks
, and as suchmacosx19.0
is parsed as a macOS SDK in build scripts, causing them to fail. This change explicitly excludes the DriverKit SDK, which fixed the build script(s) for me.