Skip to content

Commit

Permalink
misc.py: Set f16c argument
Browse files Browse the repository at this point in the history
  • Loading branch information
khronokernel committed Apr 3, 2023
1 parent 0f95d6a commit c0825ed
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@
- Resolve unused KDKs not being properly cleaned up
- Implement MXM graphics handling for iMac9,1
- Credit to [Ausdauersportler](https://github.com/Ausdauersportler) for implementation
- Resolve CoreGraphics.framework crashing on Ivy Bridge CPUs in macOS 13.3+
- Disables f16c sysctl reporting
- Resolve accidental CPU renaming with RestrictEvents
- Backend changes:
- Use `.AppleSystemUIFont` for wxPython text rendering (thanks [jazzzny](https://github.com/Jazzzny))
Expand Down
4 changes: 4 additions & 0 deletions resources/build/misc.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,10 @@ def _restrict_events_handling(self) -> None:
logging.info("- Fixing Content Caching support")
patch_args += "asset,"

if smbios_data.smbios_dictionary[self.model]["CPU Generation"] == cpu_data.cpu_data.ivy_bridge.value:
logging.info("- Fixing CoreGraphics support on Ivy Bridge")
patch_args += "f16c,"

if patch_args.endswith(","):
patch_args = patch_args[:-1]

Expand Down

0 comments on commit c0825ed

Please sign in to comment.