저는 Solaris 11.3 Sparc 64비트, Mysql Enterprise Advance 5.7.1, Apache 2.4.25 및 PHP 7.1.2를 사용하고 있습니다.
다음 매개변수를 사용하여 PHP를 구성합니다.
export CC="gcc -m64"
export CFLAGS="-std=gnu99"
./configure --prefix=/opt/app/php --with-openssl=/opt/app/openssl --datadir=/opt/app/php --enable-fpm --with-fpm-user=apache --with-fpm-group=apache --with-pcre-regex=/opt/app/pcre --with-apxs2=/opt/app/apache/bin/apxs --with-mysqli=/opt/app/mysql/mysql/bin/mysql_config --with-mysql-sock=/opt/app/mysql/mysql/socket/mysql.sock --with-libxml-dir=/opt/app/libxml2 --with-bz2 --with-zlib
다음 오류가 발생합니다.
ld: warning: file /usr/gcc/4.8/lib/gcc/sparc-sun-solaris2.11/4.8.2/libgcc.a(_clzdi2.o): wrong ELF class: ELFCLASS32
Undefined first referenced
symbol in file
__clzdi2 Zend/.libs/zend_alloc.o (symbol belongs to implicit dependency /opt/app/mysql/mysql/lib/libgcc_s.so.1)
__ctzdi2 Zend/.libs/zend_alloc.o (symbol belongs to implicit dependency /opt/app/mysql/mysql/lib/libgcc_s.so.1)
ld: fatal: symbol referencing errors
collect2: error: ld returned 1 exit status
gmake: *** [sapi/cli/php] Error 1
google.com에서 나와 비슷한 문제를 발견했습니다.
그런데 php.net을 확인해 보니 이 문제가 버전 7.0.1에서 수정된 것으로 나타났습니다.
어떻게 진행해야 하나요? 조언해주세요.