Skip to content

Latest commit

 

History

History
33 lines (22 loc) · 752 Bytes

compile.md

File metadata and controls

33 lines (22 loc) · 752 Bytes

依赖

embedx 需要一个支持 C++11 的编译器。

embedx 依赖deepx_core

有网络环境下编译

# 机器可以访问 github.com, 下面的命令会自动下载依赖 deepx_core
git submodule update --init
# 编译 embedx
make -j8
# 编译出的程序在 build_xxx 目录下

无网络环境下编译

  • 手动下载deepx_core

  • 手动下载embedx

  • deepx_core 放到 embedx 目录下

# 编译 embedx
make -j8
# 编译出的程序在 build_xxx 目录下

编译优化

参考deepx 编译优化