# third_party_zlib **Repository Path**: itopen/third_party_zlib ## Basic Information - **Project Name**: third_party_zlib - **Description**: get from http://www.zlib.net - **Primary Language**: Unknown - **License**: Zlib - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-05-04 - **Last Updated**: 2025-03-09 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # zlib库编译 ## 一、zlib库介绍 zlib库可从官网下载,当前版本为`zlib 1.3.1` http://www.zlib.net/ ## 二、zlib编译 ### 2.1 基于gcc编译 ```shell ./configure --prefix=$PWD/_install make -j$(nproc) make install ``` ### 2.2 基于arm架构编译 ```shell export CC=arm-linux-gnueabi-gcc ./configure --prefix=$PWD/_install make -j$(nproc) make install ``` ### 2.3 基于arm架构编译 ```shell export CC=aarch64-linux-gnu-gcc ./configure --prefix=$PWD/_install make -j$(nproc) make install ``` ### 2.4 基于riscv64架构编译 #### 2.4.1 工具链安装 ```shell sudo apt-get install gcc-riscv64-linux-gnu ``` #### 2.4.2 编译zlib ```shell export CC=riscv64-linux-gnu-gcc ./configure --prefix=$PWD/_install make -j$(nproc) make install ```