You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the file build_support/packages.sh, there is an incorrect line (brew ls --versions llvm | grep 14) || brew install llvm@14 in the install_mac function.
The original command always prints nothing, so it will always directly execute the install command, which is not the expected behavior.
It should be modified to brew ls --versions llvm@14 || brew install llvm@14 to correctly check if llvm@14 is installed.