Skip to content

Instantly share code, notes, and snippets.

@nitantsoni
Forked from naveenkrdy/AdobeAMDFix.md
Last active March 13, 2021 00:36
Show Gist options
  • Save nitantsoni/1e76b8827d78fa2612de44a97450ff53 to your computer and use it in GitHub Desktop.
Save nitantsoni/1e76b8827d78fa2612de44a97450ff53 to your computer and use it in GitHub Desktop.
To fix adobe products crashes on AMD hackintosh

Adobe Crash Fix XLNC

Instructions

  1. Install needed adobe apps from adobe creative cloud.

  2. Open Terminal and do the steps below for each app. Every new app installed will need this too. If something is erroring or a plugin etc is crashing, try running the PERL commands on the files. Make backups of the files before if needed

  3. Find libiomp5.dylib and replace it with this file - https://excellmedia.dl.sourceforge.net/project/badgui2/libs/mac64/libiomp5.dylib

  4. Find TextModel and blank out the file. Replace <filepath> with the actual path

sudo echo -n > <filepath>

  1. Find MMXCore and FastCore and run this on both. Replace <filepath> with the actual path
sudo perl -i -pe 's|\x90\x90\x90\x90\x56\xE8\x6A\x00|\x90\x90\x90\x90\x56\xE8\x3A\x00|sg' <filepath>
sudo perl -i -pe 's|\x90\x90\x90\x90\x56\xE8\x4A\x00|\x90\x90\x90\x90\x56\xE8\x1A\x00|sg' <filepath>
  1. Not sure what this does or if it is even really needed. Seems very random.
launchctl setenv MKL_DEBUG_CPU_TYPE 5 //All other CPUs
launchctl setenv MKL_DEBUG_CPU_TYPE 4 //For FX CPUs
  1. Tested with PS2019

Revert Instructions

Find those files and restore their backups

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment