$ gcc t0.c
dyld: Library not loaded: /opt/local/lib/libffi.6.dylib
Referenced from: /opt/local/libexec/llvm-9.0/lib/libLLVM.dylib
Reason: image not found
fatal error: /opt/local/bin/as: fatal error in /opt/local/bin/clang-mp-9.0
$ gcc --version
gcc (MacPorts gcc9 9.2.0_1) 9.2.0
Copyright (C) 2019 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.有什么帮助吗?
发布于 2022-01-31 11:11:13
它是如何固定的:
# update ports tree
$ sudo port selfupdate
# uninstall all ports
# note: in my case uninstalling all ports is much faster than
# auto-rebuilding ports which have/cause linking issues
$ sudo port -fp uninstall installed
# install needed ports
$ port install xxx yyy zzz
# test
$ gcc t0.c
<no errors as expected>https://stackoverflow.com/questions/70886413
复制相似问题