source_compile.md 13.4 KB
Newer Older
J
up  
juncaipeng 已提交
1 2 3 4
---
layout: post
title: 源码编译指南
---
J
juncaipeng 已提交
5 6
* TOC
{:toc}
J
up  
juncaipeng 已提交
7 8 9 10 11 12 13 14

Paddle-Lite 提供了移动端的一键源码编译脚本 `lite/tools/build.sh`,编译流程如下:

1. 环境准备(选择其一):Docker交叉编译环境、Linux交叉编译环境
2. 编译:调用`build.sh`脚本一键编译

## 一、环境准备

H
huzhiqiang 已提交
15
目前支持三种编译的环境:
J
up  
juncaipeng 已提交
16

H
huzhiqiang 已提交
17 18 19
1. Docker 容器环境,
2. Linux(推荐 Ubuntu 16.04)环境,
3. Mac OS 环境。
J
up  
juncaipeng 已提交
20 21 22 23 24 25 26

### 1、 Docker开发环境

[Docker](https://www.docker.com/) 是一个开源的应用容器引擎, 使用沙箱机制创建独立容器,方便运行不同程序。Docker初学者可以参考[Docker使用方法](https://thenewstack.io/docker-station-part-one-essential-docker-concepts-tools-terminology/)正确安装Docker。

#### 准备Docker镜像

H
huzhiqiang 已提交
27
有两种方式准备Docker镜像,推荐从Dockerhub直接拉取Docker镜像
J
up  
juncaipeng 已提交
28 29 30 31 32 33 34 35 36 37 38 39

```shell
# 方式一:从Dockerhub直接拉取Docker镜像
docker pull paddlepaddle/paddle-lite:2.0.0_beta

# 方式二:本地源码编译Docker镜像
git clone https://github.com/PaddlePaddle/Paddle-Lite.git
cd Paddle-Lite/lite/tools
mkdir mobile_image
cp Dockerfile.mobile mobile_image/Dockerfile
cd mobile_image
docker build -t paddlepaddle/paddle-lite .
H
huzhiqiang 已提交
40

J
up  
juncaipeng 已提交
41 42 43 44 45
# 镜像编译成功后,可用`docker images`命令,看到`paddlepaddle/paddle-lite`镜像。
```

#### 进入Docker容器

H
huzhiqiang 已提交
46
在拉取Paddle-Lite仓库代码的上层目录,执行如下代码,进入Docker容器:
J
up  
juncaipeng 已提交
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80

```shell
docker run -it \
  --name paddlelite_docker \
  -v $PWD/Paddle-Lite:/Paddle-Lite \
  --net=host \
  paddlepaddle/paddle-lite /bin/bash
```

该命令的含义:将容器命名为`paddlelite_docker``<container-name>`,将当前目录下的`Paddle-Lite`文件夹挂载到容器中的`/Paddle-Lite`这个根目录下,并进入容器中。至此,完成Docker环境的准备。

#### Docker常用命令

```shell
# 退出容器但不停止/关闭容器:键盘同时按住三个键:CTRL + q + p

# 启动停止的容器
docker start <container-name>

# 从shell进入已启动的容器
docker attach <container-name>

# 停止正在运行的Docker容器
docker stop <container-name>

# 重新启动正在运行的Docker容器
docker restart <container-name>

# 删除Docker容器
docker rm <container-name>
```

### 2、Linux 开发环境

G
guofei 已提交
81 82 83
#### Android

##### 交叉编译环境要求
J
up  
juncaipeng 已提交
84 85 86 87 88 89

- gcc、g++、git、make、wget、python、adb
- Java environment
- cmake(建议使用3.10或以上版本)
- Android NDK (建议ndk-r17c)

G
guofei 已提交
90
##### 具体步骤
J
up  
juncaipeng 已提交
91 92 93 94 95 96 97

安装软件部分以 Ubuntu 为例,其他 Linux 发行版类似。

```shell
# 1. Install basic software
apt update
apt-get install -y --no-install-recommends \
H
huzhiqiang 已提交
98
  gcc g++ git make wget python unzip adb curl
J
up  
juncaipeng 已提交
99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121

# 2. Prepare Java env.
apt-get install -y default-jdk

# 3. Install cmake 3.10 or above
wget -c https://mms-res.cdn.bcebos.com/cmake-3.10.3-Linux-x86_64.tar.gz && \
    tar xzf cmake-3.10.3-Linux-x86_64.tar.gz && \
    mv cmake-3.10.3-Linux-x86_64 /opt/cmake-3.10 && \  
    ln -s /opt/cmake-3.10/bin/cmake /usr/bin/cmake && \
    ln -s /opt/cmake-3.10/bin/ccmake /usr/bin/ccmake

# 4. Download Android NDK for linux-x86_64
#     Note: Skip this step if NDK installed
#     recommand android-ndk-r17c-darwin-x86_64
#     ref: https://developer.android.com/ndk/downloads
cd /tmp && curl -O https://dl.google.com/android/repository/android-ndk-r17c-linux-x86_64.zip
cd /opt && unzip /tmp/android-ndk-r17c-linux-x86_64.zip

# 5. Add environment ${NDK_ROOT} to `~/.bashrc` 
echo "export NDK_ROOT=/opt/android-ndk-r17c" >> ~/.bashrc
source ~/.bashrc
```

G
guofei 已提交
122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170
#### ARM Linux

适用于基于 ARMv8 和 ARMv7 架构 CPU 的各种开发板,例如 RK3399,树莓派等,目前支持交叉编译和本地编译两种方式,对于交叉编译方式,在完成目标程序编译后,可通过 scp 方式将程序拷贝到开发板运行。

##### 交叉编译

###### 编译环境要求

- gcc、g++、git、make、wget、python、scp
- cmake(建议使用3.10或以上版本)

###### 具体步骤

安装软件部分以 Ubuntu 为例,其他 Linux 发行版类似。

```shell
# 1. Install basic software
apt update
apt-get install -y --no-install-recommends \
  gcc g++ git make wget python unzip

# 2. Install arm gcc toolchains
apt-get install -y --no-install-recommends \
  g++-arm-linux-gnueabi gcc-arm-linux-gnueabi \
  g++-arm-linux-gnueabihf gcc-arm-linux-gnueabihf \
  gcc-aarch64-linux-gnu g++-aarch64-linux-gnu 

# 3. Install cmake 3.10 or above
wget -c https://mms-res.cdn.bcebos.com/cmake-3.10.3-Linux-x86_64.tar.gz && \
    tar xzf cmake-3.10.3-Linux-x86_64.tar.gz && \
    mv cmake-3.10.3-Linux-x86_64 /opt/cmake-3.10 && \  
    ln -s /opt/cmake-3.10/bin/cmake /usr/bin/cmake && \
    ln -s /opt/cmake-3.10/bin/ccmake /usr/bin/ccmake
```

##### 本地编译(直接在RK3399或树莓派上编译)

###### 编译环境要求

- gcc、g++、git、make、wget、python
- cmake(建议使用3.10或以上版本)

###### 具体步骤

安装软件部分以 Ubuntu 为例,其他 Linux 发行版本类似。

```shell
# 1. Install basic software
apt update
G
guofei 已提交
171 172
apt-get install -y --no-install-recommends \
  gcc g++ git make wget python unzip
G
guofei 已提交
173 174 175 176 177 178 179 180 181 182 183 184

# 2. install cmake 3.10 or above
wget https://www.cmake.org/files/v3.10/cmake-3.10.3.tar.gz
tar -zxvf cmake-3.10.3.tar.gz
cd cmake-3.10.3
./configure
make
sudo make install
```

之后可通过cmake --version查看cmake是否安装成功。

J
up  
juncaipeng 已提交
185 186
至此,完成 Linux 交叉编译环境的准备。

187
### 3、Mac OS 开发环境
J
up  
juncaipeng 已提交
188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221

#### 交叉编译环境要求

- gcc、git、make、curl、unzip、java
- cmake(建议使用3.10或以上版本)
- 编译Android: Android NDK (建议ndk-r17c)
- 编译IOS: XCode(Version 10.1)

#### 具体步骤

```bash
# 1. Install basic software
brew install -y curl gcc git make unzip

# 2. Install cmake 3.10 or above
brew install -y cmake

# 3. Download Android NDK for Mac
#     recommand android-ndk-r17c-darwin-x86_64
#     ref: https://developer.android.com/ndk/downloads
#     Note: Skip this step if NDK installed
cd ~/Documents && curl -O https://dl.google.com/android/repository/android-ndk-r17c-darwin-x86_64.zip
cd ~/Library && unzip ~/Documents/android-ndk-r17c-darwin-x86_64.zip

# 4. Add environment ${NDK_ROOT} to `~/.bash_profile` 
echo "export NDK_ROOT=~/Library/android-ndk-r17c" >> ~/.bash_profile
source ~/.bash_profile

# 5. Install Java Environment 
brew cask install java
```

至此,完成 Mac 交叉编译环境的准备。

222
#### Mac下Full Publish编译时需要**注意**
H
huzhiqiang 已提交
223 224 225 226
1. Mac下只支持Android的Full_publish编译
2. cmake版本需要为cmake 3.10
3. Paddle-Lite项目路径中不可以含有中文字符
4. 编译时如果报错: `Too many open files`
227 228
   解决方法:修改mac电脑的 “程序可打开的最大文件数“,例如:`ulimit -n 1024`

J
up  
juncaipeng 已提交
229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256
## 二、编译PaddleLite

### 下载代码

```shell
git clone https://github.com/PaddlePaddle/Paddle-Lite.git
cd Paddle-Lite
git checkout <release-version-tag>
```

### 编译模式与参数

编译脚本`./lite/tools/build.sh`,支持三种编译模式:

| 编译模式 | 介绍 | 适用对象 |
|:-------:|-----|:-------:|
| tiny_publish | 编译移动端部署库,无第三方库依赖 | 用户 |
| full_publish | 编译移动端部署库,有第三方依赖如protobuf、glags等,含有可将模型转换为无需protobuf依赖的naive buffer格式的工具,供tiny_publish库使用 | 用户 |
| test | 编译指定`arm_os``arm_abi`下的移动端单元测试 | 框架开发者 |

编译脚本`./lite/tools/build.sh`,追加参数说明:

|   参数     |     介绍     |     值     |
|-----------|-------------|-------------|
| --arm_os   |必选,选择安装平台     | `android``ios``ios64``armlinux` |
| --arm_abi  |必选,选择编译的arm版本,其中`armv7hf`为ARMLinux编译时选用| `armv8``armv7``armv7hf`|
| --arm_lang |arm_os=android时必选,选择编译器 | `gcc``clang`|
| --android_stl |arm_os=android时必选,选择静态链接STL或动态链接STL | `c++_static``c++_shared`|
H
huzhiqiang 已提交
257 258
| --build_extra | 可选,是否编译控制流相关op、kernel。(**编译demo时必须选择为ON**)      | `ON``OFF` |
| target |必选,选择编译模式,`tiny_publish`为编译移动端部署库、`full_publish`为带依赖的移动端部署库、`test`为移动端单元测试、`ios`为编译ios端`tiny_publish` | `tiny_publish``full_publish``test``ios` |
J
up  
juncaipeng 已提交
259 260 261

### 编译代码

262
**<font color="orange" >注意</font>**<font color="orange" >:非开发者建议在编译前使用</font>[**“加速第三方依赖库的下载”**](#加速第三方依赖库的下载)<font color="orange" >的方法,加速工程中第三方依赖库的下载与编译。 </font> **该加速方法只对arm平台的移动端(android/armlinux/ios)编译有效,无法加速server平台(x86/cuda)的第三方库编译。所以当[编译cuda 预测库](../cuda.md)和[编译x86预测库](../x86.md)时,需要保证良好的网络环境。**
J
up  
juncaipeng 已提交
263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281

#### 编译`tiny publish`动态库

##### Android
```shell
./lite/tools/build.sh \
  --arm_os=android \
  --arm_abi=armv8 \
  --arm_lang=gcc \
  --android_stl=c++_static \
  tiny_publish
```
##### IOS
```shell
./lite/tools/build.sh \
  --arm_os=ios64 \
  --arm_abi=armv8 \
  ios
```
282 283
**注意:mac环境编译IOS 时,cmake版本需要高于cmake 3.15;mac环境上编译Android时,cmake版本需要设置为cmake 3.10。**

J
up  
juncaipeng 已提交
284
ios tiny publish支持的编译选项:
285

J
up  
juncaipeng 已提交
286
* `--arm_os`: 可选ios或者ios64
H
huzhiqiang 已提交
287
* `--arm_abi`: 可选armv7和armv8(**注意**:当`arm_os=ios`时只能选择`arm_abi=armv7`,当`arm_os=ios64`时只能选择`arm_abi=armv8`
J
up  
juncaipeng 已提交
288 289 290 291
* 如果mac编译过程中报错:"Invalid CMAKE_DEVELOPER_ROOT: does not exist", 运行:
```shell
sudo xcode-select -s /Applications/Xcode.app/Contents/Developer
```
G
guofei 已提交
292
##### ARMLinux
293

J
up  
juncaipeng 已提交
294 295 296 297 298 299 300
```shell
./lite/tools/build.sh \
  --arm_os=armlinux \
  --arm_abi=armv7hf \
  --arm_lang=gcc \
  tiny_publish
```
G
guofei 已提交
301 302
- `--arm_abi`: 树莓派3b使用armv7hf,RK3399使用armv8
  
H
huzhiqiang 已提交
303
#### 编译`full publish`动态库
J
up  
juncaipeng 已提交
304 305 306 307 308 309 310 311 312 313

##### Android
```shell
./lite/tools/build.sh \
  --arm_os=android \
  --arm_abi=armv8 \
  --arm_lang=gcc \
  --android_stl=c++_static \
  full_publish
```
G
guofei 已提交
314

G
guofei 已提交
315
##### ARMLinux
J
up  
juncaipeng 已提交
316 317 318 319 320 321 322
```shell
./lite/tools/build.sh \
  --arm_os=armlinux \
  --arm_abi=armv7hf \
  --arm_lang=gcc \
  full_publish
```
G
guofei 已提交
323 324
- `--arm_abi`: 树莓派3b使用armv7hf,RK3399使用armv8
  
H
huzhiqiang 已提交
325 326
### 编译结果说明

H
huzhiqiang 已提交
327 328 329
**编译最终产物位置**`build.lite.xxx.xxx.xxx` 下的 `inference_lite_lib.xxx.xxx` ,如 Android 下 ARMv8 的产物位于`inference_lite_lib.android.armv8`

![](https://user-images.githubusercontent.com/45189361/65375706-204e8780-dccb-11e9-9816-ab4563ce0963.png)
J
up  
juncaipeng 已提交
330

H
huzhiqiang 已提交
331
**目录内容**(可能)如下:
J
up  
juncaipeng 已提交
332

H
huzhiqiang 已提交
333 334 335 336 337 338 339 340 341 342 343 344 345
**Full_publish编译结果:**

![](https://user-images.githubusercontent.com/45189361/65375704-19c01000-dccb-11e9-9650-6856c7a5bf82.png)

**Tiny_publish结果:**

![](https://user-images.githubusercontent.com/45189361/65375726-3bb99280-dccb-11e9-9903-8ce255371905.png)

**IOS编译结果:**

![](https://user-images.githubusercontent.com/45189361/65375726-3bb99280-dccb-11e9-9903-8ce255371905.png)


J
up  
juncaipeng 已提交
346

H
huzhiqiang 已提交
347 348
**具体内容**说明:

H
huzhiqiang 已提交
349
1、 `bin`文件夹:可执行工具文件 `paddle_code_generator``test_model_bin`
H
huzhiqiang 已提交
350

H
huzhiqiang 已提交
351
2、 `cxx`文件夹:包含c++的库文件与相应的头文件
H
huzhiqiang 已提交
352 353 354 355 356 357 358 359 360 361

- `include`  : 头文件
- `lib` : 库文件
  - 打包的静态库文件:
    - `libpaddle_api_full_bundled.a`  :包含 full_api 和 light_api 功能的静态库
    - `libpaddle_api_light_bundled.a` :只包含 light_api 功能的静态库
  - 打包的动态态库文件:
    - `libpaddle_full_api_shared.so` :包含 full_api 和 light_api 功能的动态库
    - `libpaddle_light_api_shared.so`:只包含 light_api 功能的动态库

H
huzhiqiang 已提交
362
3、 `demo`文件夹:示例 demo ,包含 C++ demo 和  Java demo。
H
huzhiqiang 已提交
363 364 365 366 367 368 369

- `cxx`   : C++示例 demo
  - `mobile_full` :  full_api 的使用示例
  - `mobile_light` : light_api的使用示例
- `java`  :Java 示例 demo
  - `android`  : Java的 Android 示例

H
huzhiqiang 已提交
370
4、 `java` 文件夹:包含 Jni 的动态库文件与相应的 Jar 包
H
huzhiqiang 已提交
371 372 373 374

- `jar` :  `PaddlePredictor.jar`
- `so`  : Jni动态链接库  `libpaddle_lite_jni.so`

H
huzhiqiang 已提交
375
5、 `third_party` 文件夹:第三方库文件`gflags`
H
huzhiqiang 已提交
376 377 378

**注意:**

H
huzhiqiang 已提交
379
1、 只有当`--arm_os=android` 时才会编译出:
H
huzhiqiang 已提交
380 381 382 383 384

- Java库文件与示例:`Java``demo/java`

- 动态库文件:`libpaddle_full_api_shared.so`,`libpaddle_light_api_shared.so`

H
huzhiqiang 已提交
385
2、 `tiny_publish`编译结果不包括 C++ demo和 C++ 静态库,但提供 C++ 的 light_api 动态库、 Jni 动态库和Java demo
H
huzhiqiang 已提交
386

J
up  
juncaipeng 已提交
387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402
### 加速第三方依赖库的下载

移动端相关编译所需的第三方库均位于 `<PaddleLite>/third-party` 目录下,默认编译过程中,会利用`git submodule update --init --recursive`链上相关的第三方依赖的仓库。

为加速`full_publish``test`编译模式中对`protobuf`等第三方依赖的下载,`build.sh``ci_build.sh`支持了从国内 CDN 下载第三方依赖的压缩包。

使用方法:`git clone``Paddle-Lite`仓库代码后,手动删除本地仓库根目录下的`third-party`目录:

```shell
git clone https://github.com/PaddlePaddle/Paddle-Lite.git
git checkout <release-version-tag>
cd Paddle-Lite
rm -rf third-party
```

之后再根据本文档,进行后续编译时,便会忽略第三方依赖对应的`submodule`,改为下载第三方压缩包。
403

404
**注意:该加速方法只对arm平台的移动端(android/armlinux/ios)编译有效,无法加速server平台(x86/cuda)的第三方库编译。所以当**[编译cuda 预测库](../cuda)**和**[编译x86预测库](../x86)**时,需要保证良好的网络环境。**