Administrator
发布于 2024-07-05 / 0 阅读
0
0

arm64编译jq

yum install autoconf automake libtool flex

git clone https://github.com/stedolan/jq.git
cd jq
git submodule update --init


# 如果报错: configure.ac:6: error: require Automake 1.14, but have 1.13.4
# 则查询所有指定版本号为1.14的文件,并把值改为1.13
# grep -rn 1.14 . | grep MAKE
autoreconf -fi
./configure --with-oniguruma=builtin
make LDFLAGS=-all-static -j 8
# 编译完成后, 目录下的jq文件即可直接使用


评论