Disable Hypervisor platform lib to workaround the problem with Xcode 12.2

To be enabled after updating to Xcode 12.2
This commit is contained in:
Svyatoslav Scherbina
2020-11-18 17:32:31 +03:00
committed by Stanislav Erokhin
parent 62ce813a05
commit f9810d86dd
2 changed files with 11 additions and 7 deletions
@@ -1,7 +0,0 @@
depends = darwin posix
language = Objective-C
package = platform.Hypervisor
modules = Hypervisor
compilerOpts = -framework Hypervisor
linkerOpts = -framework Hypervisor
@@ -0,0 +1,11 @@
depends = darwin posix
language = Objective-C
package = platform.Hypervisor
modules = Hypervisor
compilerOpts = -framework Hypervisor
linkerOpts = -framework Hypervisor
#Disabled: doesn't work with macOS 11.0 SDK (Xcode 12.2).
#Fixing this requires to switch this lib from modules to headers,
#but previous versions don't have an umbrella header.
#TODO: fix and enable after updating to Xcode 12.2.