Source code
Login
Home
Articles
Open-Source
Pictures
About Me
Documents
Hot
1
汇编第五章
2
unix文件
3
ubuntu使用root用户登陆14-15版本可用
4
PHP-GTK2-文档学习&翻译——教程部分表格布局使用GtkTable
5
解决LINK : fatal error LNK1123: 转换到 COFF 期间失败: 文件无效或损坏
6
时钟
7
php导出数据到xls文件
8
Windows GUI开发在控制台打印输出
9
Vim设置字体linux和windows
10
对象代理
Links
网易云课堂
简明现代魔法
看风景
果壳网看科技
下厨房
Redis官网
nginx官网
Mysql文档
持续集成项目travis-c...
在线图书创作Leanpub
PHP-CPP
值得推荐的C/C++库和框架
腾讯一个php
Jquery插件库网站
phpstorm免费注册码
Game And C 老外
owent-ACM-Cpp-...
开源应用程序架构
QTCN开发网
OAuth2协议
SwiftChinese
香草/Vanilla是一个基...
个人征信查询
A set of PHP l...
知行一 | 顶级C++社区
国外QT支持站
WebGL中文网-three...
UE4学习资源合集
https://www.ma...
cppcon
C++官方文档
C++中文友好文档
阿里云珍贵技术资料免费下载
LoL查询
opengl-tutoria...
WebGl版本支持检测网址
OpenGL API Doc...
Git 在团队中的最佳实践-...
A successful G...
GLAD- 比glew更好的...
OpenGL模型导入库-As...
WebGL-火狐doc
如何开发一款游戏:游戏开发流...
Shader
nodejs中文网
Dracula-A dark...
即时通讯网
https://apizza...
sweetalert
伯乐在线github
阿里巴巴免费图标
opengl特效
看见统计
codewars算法挑战1
leetcode算法挑战2
PHP列续松博客
electron-vue文档
Vue Cli 3.0
element-ui
翻墙
Golang ORM ——G...
访客地图
Mac编译php7 iconv错误与freetype
张成
2019/3
9154
``` './configure' '--prefix=/usr/local/php/7.1' '--with-config-file-path=/usr/local/php/7.1' '--with-config-file-scan-dir=/usr/local/php/php_common_ini' '--with-mysqli=mysqlnd' '--with-pdo-mysql=mysqlnd' '--enable-fpm' '--enable-static' '--enable-inline-optimization' '--enable-sockets' '--enable-wddx' '--enable-zip' '--enable-calendar' '--enable-bcmath' '--enable-soap' '--with-zlib=/usr/local/opt/zlib' '--with-iconv=/usr/local/opt/libiconv' '--with-gd' '--with-xmlrpc' '--enable-mbstring' '--with-curl' '--enable-ftp' '--with-mcrypt=/usr/local/opt/mcrypt' '--enable-fileinfo' '--enable-pcntl' '--enable-opcache' '--with-openssl=/usr/local/opt/openssl' '--with-freetype-dir=/usr/local/opt/freetype' ``` - 出现编译iconv错误 修改Makefile ``` EXTRA_LIBS = -lcrypto -lssl -lcrypto -lz -lresolv -lmcrypt /usr/local/opt/libiconv/lib/libiconv.dylib .... #这里面的 -liconv修改为上面 ``` imagettftext 函数需要编译时带上 --with-freetype-dir - 出现freetype相关错误 原来他们的路径处理不同,brew安装后头文件路径为/usr/local/include/freetype2/,PHP需要的路径为/include/freetype2/freetype/,PHP认为还要/usr/local/include/freetype2/下面有一个freetype目录 执行命令 ``` ln -s /usr/local/Cellar/freetype/2.10.0/include/freetype2/ /usr/local/Cellar/freetype/2.10.0/include/freetype2/freetype ``` 创建一个链接后,配置通过。
上一篇:
Docker笔记-attach进入与退出
下一篇:
使用phpstorm开发推荐使用插件的列表
Please enable JavaScript to view the
comments powered by Disqus.