我自己配置了PHP,包括了我需要的所有库...但后来意识到我忘记了freetype库。
所以我回到我的php-5.3.2目录并运行./configure'--with-free-type = / usr / local / lib'
PHP配置正常,没有错误。
但是当我运行make:
collect2: ld returned 1 exit status
make: *** [sapi/cgi/php-cgi] Error 1
经常出现的事情:
/php-5.3.2/ext/libxml/libxml.c:336: undefined reference to `ts_resource_ex'
/php-5.3.2/ext/sqlite3/sqlite3.c:663: undefined reference to `executor_globals_id'
ext/sqlite3/.libs/sqlite3.o: In function `php_sqlite3_callback_final':
/php-5.3.2/ext/sqlite3/sqlite3.c:811: undefined reference to `ts_resource_ex'
ext/sqlite3/.libs/sqlite3.o: In function `php_sqlite3_callback_step':
/php-5.3.2/ext/sqlite3/sqlite3.c:799: undefined reference to `ts_resource_ex'
ext/sqlite3/.libs/sqlite3.o: In function `php_sqlite3_callback_func':
/php-5.3.2/ext/sqlite3/sqlite3.c:788: undefined reference to `ts_resource_ex'
ext/sqlite3/.libs/sqlite3.o: In function `php_sqlite3_authorizer':
/php-5.3.2/ext/sqlite3/sqlite3.c:1782: undefined reference to `ts_resource_ex'
/php-5.3.2/ext/sqlite3/sqlite3.c:1787: undefined reference to `core_globals_id'
ext/sqlite3/.libs/sqlite3.o: In function `zim_sqlite3_open':
/php-5.3.2/ext/sqlite3/sqlite3.c:161: undefined reference to `core_globals_id'
/php-5.3.2/ext/sqlite3/sqlite3.c:123: undefined reference to `core_globals_id'
未定义的引用出现在几个方面。
所以它在这里失败但是当我最初编译PHP时它没有。这是怎么回事?我需要重新配置整个事情吗?
提前致谢。
答案 0 :(得分:3)
You should use --with-freetype-dir
instead,其中包含freetype安装前缀的路径:--with-freetype-dir=/usr/local
。
当你进行干净的构建(make clean
,configure
,make
)时,编译错误应该消失。