Created by: luotao1
related #7231 (closed)
- The structure of the installed shared library is as follows. It uses default cmake option +
-DWITH_PYTHON=OFF
PaddleRoot/
├── bin
│ └── paddle
├── include
│ └── paddle
│ ├── framework
│ ├── inference
│ ├── memory
│ ├── platform
│ └── string
├── lib
│ ├── libpaddle_fluid.a
│ └── libpaddle_fluid.so
├── opt
│ └── paddle
│ └── bin
└── third_party
├── eigen3
│ ├── Eigen
│ └── unsupported
├── gflags
│ ├── include
│ └── lib
├── glog
│ ├── include
│ └── lib
├── openblas
│ ├── include
│ └── lib
└── protobuf
├── include
└── lib
du -sh *
12K bin
700K include
188M lib
200M opt
92M third_party
128M libpaddle_fluid.a
61M libpaddle_fluid.so
- The DEPS of static library is manually added one by one now, it always missing some new DEPS. So adding DEPS automatically will be done later.
- Examples: https://github.com/luotao1/fluid_inference_example.