咨询一下,我要编译arm环境,也是参考linux构建吗
Closed this issue · 3 comments
netyum commented
咨询一下,我要编译arm环境,也是参考linux构建吗
需要自己build镜像是吧
jingjingxyk commented
咨询一下,我要编译arm环境,也是参考linux构建吗
需要自己build镜像是吧
都不用修改,你直接切换到 ARM linux 环境下,直接就能构建
步骤:
git clone https://github.com/swoole/swoole-cli.git
cd swoole-cli
git submodule update --init
# 启用容器
bash sapi/quickstart/linux/run-alpine-3.16-container.sh
# 进入容器
bash sapi/quickstart/linux/connection-swoole-cli-alpine.sh
# 构建环境准备必要的软件
bash sapi/quickstart/linux/alpine-3.16-init.sh --mirror china
# 准备PHP
bash sapi/quickstart/setup-php-runtime.sh --mirror china
bash sapi/quickstart/setup-php-runtime-in-docker.sh
# 下载依赖库 和 扩展
php prepare.php +inotify +apcu +ds
bash make.sh all-library
bash make.sh config
bash make.sh build
linux arm64 快速安装容器
curl -fsSL https://get.docker.com -o get-docker.sh
bash get-docker.sh
# 使用镜像
bash get-docker.sh --mirror Aliyun
jingjingxyk commented
netyum commented
已经编译成功,不过进容器后的操作只能用sh,不能用bash,没具体看