Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle-Lite
提交
28437ce4
P
Paddle-Lite
项目概览
PaddlePaddle
/
Paddle-Lite
通知
331
Star
4
Fork
1
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
271
列表
看板
标记
里程碑
合并请求
78
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle-Lite
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
271
Issue
271
列表
看板
标记
里程碑
合并请求
78
合并请求
78
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
28437ce4
编写于
12月 25, 2019
作者:
H
huzhiqiang
提交者:
GitHub
12月 25, 2019
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix compile doc (#2678)
上级
b309a6ae
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
20 addition
and
4 deletion
+20
-4
_all_pages/develop/source_compile.md
_all_pages/develop/source_compile.md
+10
-2
_all_pages/v2.2.0/source_compile.md
_all_pages/v2.2.0/source_compile.md
+10
-2
未找到文件。
_all_pages/develop/source_compile.md
浏览文件 @
28437ce4
...
@@ -252,8 +252,8 @@ git checkout <release-version-tag>
...
@@ -252,8 +252,8 @@ git checkout <release-version-tag>
| 参数 | 介绍 | 值 |
| 参数 | 介绍 | 值 |
|-----------|-------------|-------------|
|-----------|-------------|-------------|
| --arm_os |必选,选择安装平台 |
`android`
、
`ios`
、
`ios64`
、
`armlinux`
|
| --arm_os |必选,选择安装平台 |
`android`
、
`ios`
、
`ios64`
、
`armlinux`
|
| --arm_abi |必选,选择编译的arm版本,其中
`armv7hf`
为ARMLinux编译时选用|
`armv8`
、
`armv7`
、
`armv7hf`
|
| --arm_abi |必选,选择编译的arm版本,其中
`armv7hf`
为ARMLinux编译时选用|
`armv8`
、
`armv7`
、
`armv7hf`
(仅
`armlinux`
支持)
|
| --arm_lang |arm_os=android时必选,选择编译器 |
`gcc`
、
`clang`
|
| --arm_lang |arm_os=android时必选,选择编译器 |
`gcc`
、
`clang`
(
`clang`
当前暂不支持)
|
| --android_stl |arm_os=android时必选,选择静态链接STL或动态链接STL |
`c++_static`
、
`c++_shared`
|
| --android_stl |arm_os=android时必选,选择静态链接STL或动态链接STL |
`c++_static`
、
`c++_shared`
|
| --build_extra | 可选,是否编译全量预测库(默认为OFF)。详情可参考
[
预测库说明
](
../library
)
。 |
`ON`
、
`OFF`
|
| --build_extra | 可选,是否编译全量预测库(默认为OFF)。详情可参考
[
预测库说明
](
../library
)
。 |
`ON`
、
`OFF`
|
| target |必选,选择编译模式,
`tiny_publish`
为编译移动端部署库、
`full_publish`
为带依赖的移动端部署库、
`test`
为移动端单元测试、
`ios`
为编译ios端
`tiny_publish`
|
`tiny_publish`
、
`full_publish`
、
`test`
、
`ios`
|
| target |必选,选择编译模式,
`tiny_publish`
为编译移动端部署库、
`full_publish`
为带依赖的移动端部署库、
`test`
为移动端单元测试、
`ios`
为编译ios端
`tiny_publish`
|
`tiny_publish`
、
`full_publish`
、
`test`
、
`ios`
|
...
@@ -269,8 +269,10 @@ git checkout <release-version-tag>
...
@@ -269,8 +269,10 @@ git checkout <release-version-tag>
./lite/tools/build.sh
\
./lite/tools/build.sh
\
--arm_os
=
android
\
--arm_os
=
android
\
--arm_abi
=
armv8
\
--arm_abi
=
armv8
\
--build_extra
=
OFF
\
--arm_lang
=
gcc
\
--arm_lang
=
gcc
\
--android_stl
=
c++_static
\
--android_stl
=
c++_static
\
--build_extra
=
OFF
\
tiny_publish
tiny_publish
```
```
##### IOS
##### IOS
...
@@ -278,6 +280,7 @@ git checkout <release-version-tag>
...
@@ -278,6 +280,7 @@ git checkout <release-version-tag>
./lite/tools/build.sh
\
./lite/tools/build.sh
\
--arm_os
=
ios64
\
--arm_os
=
ios64
\
--arm_abi
=
armv8
\
--arm_abi
=
armv8
\
--build_extra
=
OFF
\
ios
ios
```
```
**注意:mac环境编译IOS 时,cmake版本需要高于cmake 3.15;mac环境上编译Android时,cmake版本需要设置为cmake 3.10。**
**注意:mac环境编译IOS 时,cmake版本需要高于cmake 3.15;mac环境上编译Android时,cmake版本需要设置为cmake 3.10。**
...
@@ -293,9 +296,11 @@ sudo xcode-select -s /Applications/Xcode.app/Contents/Developer
...
@@ -293,9 +296,11 @@ sudo xcode-select -s /Applications/Xcode.app/Contents/Developer
##### ARMLinux
##### ARMLinux
```
shell
```
shell
./lite/tools/build.sh
\
./lite/tools/build.sh
\
--build_extra
=
OFF
\
--arm_os
=
armlinux
\
--arm_os
=
armlinux
\
--arm_abi
=
armv7hf
\
--arm_abi
=
armv7hf
\
--arm_lang
=
gcc
\
--arm_lang
=
gcc
\
--build_extra
=
OFF
\
tiny_publish
tiny_publish
```
```
-
`--arm_abi`
: 树莓派3b使用armv7hf,RK3399使用armv8
-
`--arm_abi`
: 树莓派3b使用armv7hf,RK3399使用armv8
...
@@ -307,8 +312,10 @@ sudo xcode-select -s /Applications/Xcode.app/Contents/Developer
...
@@ -307,8 +312,10 @@ sudo xcode-select -s /Applications/Xcode.app/Contents/Developer
./lite/tools/build.sh
\
./lite/tools/build.sh
\
--arm_os
=
android
\
--arm_os
=
android
\
--arm_abi
=
armv8
\
--arm_abi
=
armv8
\
--build_extra
=
OFF
\
--arm_lang
=
gcc
\
--arm_lang
=
gcc
\
--android_stl
=
c++_static
\
--android_stl
=
c++_static
\
--build_extra
=
OFF
\
full_publish
full_publish
```
```
##### ARMLinux
##### ARMLinux
...
@@ -317,6 +324,7 @@ sudo xcode-select -s /Applications/Xcode.app/Contents/Developer
...
@@ -317,6 +324,7 @@ sudo xcode-select -s /Applications/Xcode.app/Contents/Developer
--arm_os
=
armlinux
\
--arm_os
=
armlinux
\
--arm_abi
=
armv7hf
\
--arm_abi
=
armv7hf
\
--arm_lang
=
gcc
\
--arm_lang
=
gcc
\
--build_extra
=
OFF
\
full_publish
full_publish
```
```
-
`--arm_abi`
: 树莓派3b使用armv7hf,RK3399使用armv8
-
`--arm_abi`
: 树莓派3b使用armv7hf,RK3399使用armv8
...
...
_all_pages/v2.2.0/source_compile.md
浏览文件 @
28437ce4
...
@@ -252,8 +252,8 @@ git checkout <release-version-tag>
...
@@ -252,8 +252,8 @@ git checkout <release-version-tag>
| 参数 | 介绍 | 值 |
| 参数 | 介绍 | 值 |
|-----------|-------------|-------------|
|-----------|-------------|-------------|
| --arm_os |必选,选择安装平台 |
`android`
、
`ios`
、
`ios64`
、
`armlinux`
|
| --arm_os |必选,选择安装平台 |
`android`
、
`ios`
、
`ios64`
、
`armlinux`
|
| --arm_abi |必选,选择编译的arm版本,其中
`armv7hf`
为ARMLinux编译时选用|
`armv8`
、
`armv7`
、
`armv7hf`
|
| --arm_abi |必选,选择编译的arm版本,其中
`armv7hf`
为ARMLinux编译时选用|
`armv8`
、
`armv7`
、
`armv7hf`
(仅
`armlinux`
支持)
|
| --arm_lang |arm_os=android时必选,选择编译器 |
`gcc`
、
`clang`
|
| --arm_lang |arm_os=android时必选,选择编译器 |
`gcc`
、
`clang`
(
`clang`
当前暂不支持)
|
| --android_stl |arm_os=android时必选,选择静态链接STL或动态链接STL |
`c++_static`
、
`c++_shared`
|
| --android_stl |arm_os=android时必选,选择静态链接STL或动态链接STL |
`c++_static`
、
`c++_shared`
|
| --build_extra | 可选,是否编译全量预测库(默认为OFF)。详情可参考
[
预测库说明
](
../library
)
。 |
`ON`
、
`OFF`
|
| --build_extra | 可选,是否编译全量预测库(默认为OFF)。详情可参考
[
预测库说明
](
../library
)
。 |
`ON`
、
`OFF`
|
| target |必选,选择编译模式,
`tiny_publish`
为编译移动端部署库、
`full_publish`
为带依赖的移动端部署库、
`test`
为移动端单元测试、
`ios`
为编译ios端
`tiny_publish`
|
`tiny_publish`
、
`full_publish`
、
`test`
、
`ios`
|
| target |必选,选择编译模式,
`tiny_publish`
为编译移动端部署库、
`full_publish`
为带依赖的移动端部署库、
`test`
为移动端单元测试、
`ios`
为编译ios端
`tiny_publish`
|
`tiny_publish`
、
`full_publish`
、
`test`
、
`ios`
|
...
@@ -269,8 +269,10 @@ git checkout <release-version-tag>
...
@@ -269,8 +269,10 @@ git checkout <release-version-tag>
./lite/tools/build.sh
\
./lite/tools/build.sh
\
--arm_os
=
android
\
--arm_os
=
android
\
--arm_abi
=
armv8
\
--arm_abi
=
armv8
\
--build_extra
=
OFF
\
--arm_lang
=
gcc
\
--arm_lang
=
gcc
\
--android_stl
=
c++_static
\
--android_stl
=
c++_static
\
--build_extra
=
OFF
\
tiny_publish
tiny_publish
```
```
##### IOS
##### IOS
...
@@ -278,6 +280,7 @@ git checkout <release-version-tag>
...
@@ -278,6 +280,7 @@ git checkout <release-version-tag>
./lite/tools/build.sh
\
./lite/tools/build.sh
\
--arm_os
=
ios64
\
--arm_os
=
ios64
\
--arm_abi
=
armv8
\
--arm_abi
=
armv8
\
--build_extra
=
OFF
\
ios
ios
```
```
**注意:mac环境编译IOS 时,cmake版本需要高于cmake 3.15;mac环境上编译Android时,cmake版本需要设置为cmake 3.10。**
**注意:mac环境编译IOS 时,cmake版本需要高于cmake 3.15;mac环境上编译Android时,cmake版本需要设置为cmake 3.10。**
...
@@ -293,9 +296,11 @@ sudo xcode-select -s /Applications/Xcode.app/Contents/Developer
...
@@ -293,9 +296,11 @@ sudo xcode-select -s /Applications/Xcode.app/Contents/Developer
##### ARMLinux
##### ARMLinux
```
shell
```
shell
./lite/tools/build.sh
\
./lite/tools/build.sh
\
--build_extra
=
OFF
\
--arm_os
=
armlinux
\
--arm_os
=
armlinux
\
--arm_abi
=
armv7hf
\
--arm_abi
=
armv7hf
\
--arm_lang
=
gcc
\
--arm_lang
=
gcc
\
--build_extra
=
OFF
\
tiny_publish
tiny_publish
```
```
-
`--arm_abi`
: 树莓派3b使用armv7hf,RK3399使用armv8
-
`--arm_abi`
: 树莓派3b使用armv7hf,RK3399使用armv8
...
@@ -307,8 +312,10 @@ sudo xcode-select -s /Applications/Xcode.app/Contents/Developer
...
@@ -307,8 +312,10 @@ sudo xcode-select -s /Applications/Xcode.app/Contents/Developer
./lite/tools/build.sh
\
./lite/tools/build.sh
\
--arm_os
=
android
\
--arm_os
=
android
\
--arm_abi
=
armv8
\
--arm_abi
=
armv8
\
--build_extra
=
OFF
\
--arm_lang
=
gcc
\
--arm_lang
=
gcc
\
--android_stl
=
c++_static
\
--android_stl
=
c++_static
\
--build_extra
=
OFF
\
full_publish
full_publish
```
```
##### ARMLinux
##### ARMLinux
...
@@ -317,6 +324,7 @@ sudo xcode-select -s /Applications/Xcode.app/Contents/Developer
...
@@ -317,6 +324,7 @@ sudo xcode-select -s /Applications/Xcode.app/Contents/Developer
--arm_os
=
armlinux
\
--arm_os
=
armlinux
\
--arm_abi
=
armv7hf
\
--arm_abi
=
armv7hf
\
--arm_lang
=
gcc
\
--arm_lang
=
gcc
\
--build_extra
=
OFF
\
full_publish
full_publish
```
```
-
`--arm_abi`
: 树莓派3b使用armv7hf,RK3399使用armv8
-
`--arm_abi`
: 树莓派3b使用armv7hf,RK3399使用armv8
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录