3 Star 1 Fork 3

Gitee 极速下载/Zstd-jni

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/luben/zstd-jni
克隆/下载
make_so_cross_buster.sh 1.08 KB
一键复制 编辑 原始数据 按行查看 历史
#!/bin/bash -x
VERSION=$(cat version)
compile() {
ARCH=$1
CC=$2
OS=linux
BUILD_DIR="build_cross/$ARCH"
echo "Compiling for $ARCH/$OS"
INSTALL=target/classes/$OS/$ARCH
ssh buster mkdir -p $BUILD_DIR
rsync -r --delete jni buster:$BUILD_DIR/
rsync -r --delete src/main/native buster:$BUILD_DIR
rsync ./libzstd-jni.so.map buster:$BUILD_DIR
ssh buster 'cd '$BUILD_DIR'; '$CC' -shared -static-libgcc -Wl,--version-script=./libzstd-jni.so.map -Wl,-Bsymbolic -fPIC -O3 -flto -DZSTD_LEGACY_SUPPORT=4 -DZSTD_MULTITHREAD=1 -I/usr/include -I./jni -I./native -I./native/common -I./native/legacy -std=c99 -lpthread -o libzstd-jni-'$VERSION'.so native/*.c native/legacy/*.c native/common/*.c native/compress/*.c native/decompress/*.c native/dictBuilder/*.c'
mkdir -p $INSTALL
rsync buster:$BUILD_DIR/libzstd-jni-$VERSION.so $INSTALL
chmod -x $INSTALL/libzstd-jni-$VERSION.so
}
compile arm arm-linux-gnueabihf-gcc-8
compile s390x "s390x-linux-gnu-gcc-8 -march=z196"
compile mips64 mips64-linux-gnuabi64-gcc-8
compile i386 "i686-linux-gnu-gcc-8 -march=i586"
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors/zstd-jni.git
[email protected]:mirrors/zstd-jni.git
mirrors
zstd-jni
Zstd-jni
master

搜索帮助