阅读:92回复:0
openEDI 下载编译
下载安装好CentOS7并登录后,就可以进行openEDI的下载编译了。
1.下载openEDI前,执行 source /opt/devtoolset/devtoolset.bash 2.下载openEDI git clone --recursive https://gitee.com/niiceda/open-edi.git 3.编译 cd open-edi mkdir build # assume you are inside the root directory of the repository cd build cmake .. # you may add -DCMAKE_INSTALL_PREFIX=your/install/path to specify the location make # you may add -j to turn on parallel building make test # optional step to run unittests make docs # optional step to generate HTML documentations make install 其中,make test这一步会报错,可以暂时忽略。 [songyg于2021-01-21 09:29编辑了帖子]
|
|