安装php8.0报错configure: error: unrecognized options: --with-freetype-dir, --with-jpeg-dir
安装php8.0时,可以说php7.4也已经发生参数变更
百度到的安装命令都是docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/类似的
仔细查看PHP7.4的手册Other Changes才发现with参数改了
重新执行命令:
PHP Code复制内容到剪贴板
- docker-php-ext-configure gd \
- --with-freetype=/usr/include/ \
- --with-jpeg=/usr/include/
安装成功!