使用 mysql brew install 在 Mac Sierra 上安装 perl DBD::mysql 失败
Installing perl DBD::mysql fails on Mac Sierra with mysql brew install
正在尝试在我的 Mac Sierra 计算机 运行 mysql v 5.7.17 上安装 DBD::mysql
。尝试使用 cpanm install DBD::mysql
安装时出现以下错误:
Checking if libs are available for compiling...
Can't link/include C library 'ssl', 'crypto', aborting.
目前我发现的其他解决方案无法解决 Sierra 的这个问题。
你可以传递 libs
和 cflags
arg 来帮助 Makefile.PL
找到机器上的库(在我的例子中,openssl 库是用自制软件安装的):
cpanm --configure-args="--libs='-L/usr/local/opt/openssl/lib -L/usr/local/Cellar/mysql/5.7.17/lib' --cflags='-I/usr/local/opt/openssl/include -I/usr/local/Cellar/mysql/5.7.17/include/mysql'" DBD::mysql
这对我有用:
cpanm --configure-args="--libs='-L/usr/local/opt/openssl/lib -L/usr/local/Cellar/mysql/5.7.19/lib -lmysqlclient -lssl -lcrypto' --cflags='-I/usr/local/opt/openssl/include -I/usr/local/Cellar/mysql/5.7.19/include/mysql'" DBD::mysql
正在尝试在我的 Mac Sierra 计算机 运行 mysql v 5.7.17 上安装 DBD::mysql
。尝试使用 cpanm install DBD::mysql
安装时出现以下错误:
Checking if libs are available for compiling...
Can't link/include C library 'ssl', 'crypto', aborting.
目前我发现的其他解决方案无法解决 Sierra 的这个问题。
你可以传递 libs
和 cflags
arg 来帮助 Makefile.PL
找到机器上的库(在我的例子中,openssl 库是用自制软件安装的):
cpanm --configure-args="--libs='-L/usr/local/opt/openssl/lib -L/usr/local/Cellar/mysql/5.7.17/lib' --cflags='-I/usr/local/opt/openssl/include -I/usr/local/Cellar/mysql/5.7.17/include/mysql'" DBD::mysql
这对我有用:
cpanm --configure-args="--libs='-L/usr/local/opt/openssl/lib -L/usr/local/Cellar/mysql/5.7.19/lib -lmysqlclient -lssl -lcrypto' --cflags='-I/usr/local/opt/openssl/include -I/usr/local/Cellar/mysql/5.7.19/include/mysql'" DBD::mysql