出于工作原因,我正在尝试将我当前在 OSX (Lion) 上的 MySQL 版本降级到 5.1 版。我使用brew uninstall mysql
. 当我尝试使用 brew 安装 MySQL 5.1 的版本包时brew install mysql51
,我收到以下错误:
C++ standard library: libstdc++ (from clang)
This is incompatible with the standard library being used
to build mysql51: libstdc++ (from gcc-4.6)
我尝试运行brew install mysql51 --with-clang
and brew install mysql51 --use-clang
,它们都产生了相同的错误。如何让 brew 使用 clang 编译器安装 MySQL?