Skip to content

Instantly share code, notes, and snippets.

@XLNCs
Last active March 21, 2024 15:33
Show Gist options
  • Save XLNCs/86d7a391e46f85a04d28db171656b458 to your computer and use it in GitHub Desktop.
Save XLNCs/86d7a391e46f85a04d28db171656b458 to your computer and use it in GitHub Desktop.
To fix adobe products crashes on AMD hackintosh
MOVED HERE:
https://gist.github.com/naveenkrdy/26760ac5135deed6d0bb8902f6ceb6bd
@marlonassuncao
Copy link

for file in MMXCore FastCore TextModel libiomp5.dylib libtbb.dylib libtbbmalloc.dylib; do
find /Applications/Adobe* -type f -name $file | while read -r FILE; do
sudo -v
echo "found $FILE"
[[ ! -f ${FILE}.back ]] && sudo cp -f $FILE ${FILE}.back || sudo cp -f ${FILE}.back $FILE
echo $FILE | grep libiomp5 >/dev/null
if [[ $? == 0 ]]; then
dir=$(dirname "$FILE")
[[ ! -f ${HOME}/libiomp5.dylib ]] && cd $HOME && curl -sO https://excellmedia.dl.sourceforge.net/project/badgui2/libs/mac64/libiomp5.dylib
echo -n "replacing " && sudo cp -vf ${HOME}/libiomp5.dylib $dir && echo
rm -f ${HOME}/libiomp5.dylib
continue
fi
echo $FILE | grep TextModel >/dev/null
[[ $? == 0 ]] && echo "emptying $FILE" && sudo echo -n >$FILE && continue
echo "patching $FILE \n"
sudo perl -i -pe 's|\x90\x90\x90\x90\x56\xE8\x6A\x00|\x90\x90\x90\x90\x56\xE8\x3A\x00|sg' $FILE
sudo perl -i -pe 's|\x90\x90\x90\x90\x56\xE8\x4A\x00|\x90\x90\x90\x90\x56\xE8\x1A\x00|sg' $FILE
done
done

@fabiosun
Copy link

fabiosun commented Oct 4, 2021

I have same problem X__x

Photoshop 2021 22.0 changing font, liquify or neural filter --> Close the app immediately

I've done all the procedures above and only Photoshop keeps the error

i would try to read here ..no need to delete or patching many things:

https://www.macos86.it/topic/4822-photoshop-after-effects-cc-2021-premiere-pro-cc-2021-154-amd-hackintosh-fix/#comments
Also warp stabilizer ,camera Track, MorphCut effects in Premiere Pro/After Effects work fine ;)

By the way it works perfectly with latest ADOBE CC suite also

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