Sync PatcherSupportPkg

This commit is contained in:
Mykola Grymalyuk
2023-04-17 10:37:36 -06:00
parent 43cc83edf4
commit 7b83c8d2cc
3 changed files with 6 additions and 8 deletions
+5
View File
@@ -1,6 +1,11 @@
# OpenCore Legacy Patcher changelog
## 0.6.5
- Update 3802 Patchset Binaries:
- Resolves additional 3rd party app crashes on Metal with macOS 13.3+
- ex: PowerPoint's "Presentation Mode"
- Increment Binaries:
- PatcherSupportPkg 0.9.6 - release
## 0.6.4
- Backend changes:
+1 -1
View File
@@ -13,7 +13,7 @@ class Constants:
def __init__(self) -> None:
# Patcher Versioning
self.patcher_version: str = "0.6.5" # OpenCore-Legacy-Patcher
self.patcher_support_pkg_version: str = "0.9.3" # PatcherSupportPkg
self.patcher_support_pkg_version: str = "0.9.6" # PatcherSupportPkg
self.copyright_date: str = "Copyright © 2020-2023 Dortania"
# URLs
-7
View File
@@ -264,13 +264,6 @@ class SysPatchHelpers:
logging.info(f"- Merging GPUCompiler.framework libraries to match binary")
src_dir = f"{LIBRARY_DIR}/{file.name}"
for file in ["module.modulemap", "opencl-c.h"]:
# Copy on Write to reduce disk usage
dst_path = f"{DEST_DIR}/include/{file}"
if Path(dst_path).exists():
continue
utilities.process_status(utilities.elevated(["cp", "-c", f"{src_dir}/include/{file}", f"{DEST_DIR}/include/"], stdout=subprocess.PIPE, stderr=subprocess.STDOUT))
if not Path(f"{DEST_DIR}/lib").exists():
utilities.process_status(utilities.elevated(["cp", "-cR", f"{src_dir}/lib", f"{DEST_DIR}/"], stdout=subprocess.PIPE, stderr=subprocess.STDOUT))