编译php后在哪里可以找到mbstring.so?

时间:2018-07-16 14:43:19

标签: php-7.2 mbstring

我在CentOS操作系统上使用以下参数编译了PHP 7.2.5:

LIBS="-lpthread " ./configure --prefix="$PHP_PREFIX" \
        --enable-sockets \
        --enable-embed \
        --enable-com-dotnet \
        --enable-ctype \
        --with-curl \
        --enable-mbstring \
        --with-gd \
        --enable-soap \
        --enable-pdo=static \
        --with-mp \
        --with-curl=static \
        --with-openssl=/path/to/openssl-1.1 \
        --with-libdir=lib64 \
        --with-freetype="/path/to/freetype"
make
make install

现在,我想获取mbstring.so,因此可以将其放入modules目录。但是,当我用find . -name "*mbstring*" -type f搜索mbstring时,我只会得到此输出

./ext/mbstring/mbstring.c
./ext/mbstring/mbstring.h
./ext/mbstring/.libs/mbstring.o
./ext/mbstring/mbstring.lo

为什么没有mbstring.so

0 个答案:

没有答案
相关问题