From 7b2bd798553e96bb93a337d4afd5ea163ba558f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thi=20Do=C3=A3n?= Date: Wed, 24 Nov 2021 16:52:53 +0900 Subject: [PATCH] Documentation: Remove outdated instruction As of qemu 6.0.0, it should already have the entitlement to access the Hypervior.framework by default, so re-codesigning the binary is no-longer necessary. https://github.com/qemu/qemu/commit/8a74ce618b647e71ac703b5fe5dba3a2329a4d76 --- Documentation/BuildInstructionsMacOS.md | 26 ------------------------- 1 file changed, 26 deletions(-) diff --git a/Documentation/BuildInstructionsMacOS.md b/Documentation/BuildInstructionsMacOS.md index 896c283c23..e4590483bb 100644 --- a/Documentation/BuildInstructionsMacOS.md +++ b/Documentation/BuildInstructionsMacOS.md @@ -23,29 +23,3 @@ Notes: - Installing osxfuse for the first time requires enabling its system extension in System Preferences and then restarting your machine. The output from installing osxfuse with brew says this, but it's easy to miss. - -## Hardware acceleration on macOS Big Sur - -If you are on macOS Big Sur, you will need to manually enable QEMU's hardware acceleration before running Serenity, by -creating a new file called `entitlements.xml` in the `Build/` folder, with the content below, and then running this -command: - -`codesign -s - --entitlements entitlements.xml --force $(which qemu-system-x86_64)` - -
-Content for 'entitlements.xml'. - -```xml - - - - - com.apple.security.hypervisor - - - -``` - -
-