dyld: Library not loaded: /usr/local/lib/libjpeg.8.dylib - homebrew php

后端 未结 15 2077
你的背包
你的背包 2020-12-07 09:34

PHP was not working for me as I was encountering this libpng issue, so I reinstalled a new version with Homebrew.

However, I\'m getting a similar error with

15条回答
  •  隐瞒了意图╮
    2020-12-07 10:08

    Even though the solution in the accepted answer works, it's not the right way to fix the problem. It violates brew's metadata integrity.

    Problem

    The issue is that Homebrew's jpeg formula has been upgraded to v9 but the existing "bottled" PHP formula is still built and linked against the previous version, v8, which is no longer exists on your system.

    You have a few options to fix the issue.

    1. Recompile phpxx formula from source (highly recommended)

    Uninstall your php formula, and rebuild it from the source instead of using the bottled version. This way, php will use and link against the currently installed version of jpeg. Assuming that you're dealing with php71:

    brew reinstall php71 --build-from-source
    

    2. Downgrade jpeg formula the right way (preferred over recompiling it manually)

    If you haven't run brew cleanup, you already got the previous jpeg version in your brew's cellar, switch to it:

    brew switch jpeg 8d
    

    If you get a jpeg does not have a version "8d" in the Cellar. error, you need to first restore it by reverting the history:

    cd $(brew --prefix)/Homebrew/Library/Taps/homebrew/homebrew-core
    git checkout b231469
    HOMEBREW_NO_AUTO_UPDATE=1 brew install jpeg
    git checkout master
    
    brew switch jpeg 8d
    

    You can find out the commit hash by using brew log jpeg and going through the commit messages.

    The downside is that there might be other formulas that require the newer version to work properly, e.g. imagemagick. If you face such incompatibility issues, check the first solution above.

    3. Downgrade jpeg by manually recompiling (not recommended)

    Fetch the source, compile and overwrite brew's version. Refer to Denis' answer for details.

    This is not recommended because it violates the integrity of your brew metadata. Brew thinks that it has the 8b version, however, you manually compiled 9b and overwrote the files.

    4. Manually symlink the old version (seriously?)

    Do not manually symlink the leftover libjpeg.8.dylib. If the file is there, you can just brew switch to it as mentioned in the second solution above.

    It's just the worst hack you can do here.


    Such issues will be eventually fixed.

提交回复
热议问题