加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
build_so.sh 709 Bytes
一键复制 编辑 原始数据 按行查看 历史
fuyangchenghu 提交于 2024-01-30 15:12 . !2 评审意见合入
#!/bin/bash
ScriptPath="$( cd "$(dirname "$BASH_SOURCE")" ; pwd -P )"
cd ${ScriptPath}/Common
mkdir build
cd build
cmake -DCMAKE_INSTALL_PREFIX=/usr .. -DCMAKE_C_COMPILER=gcc -DCMAKE_SKIP_RPATH=TRUE
make
sudo make install
cd ${ScriptPath}/DVPPLite
mkdir build
cd build
cmake -DCMAKE_INSTALL_PREFIX=/usr .. -DCMAKE_C_COMPILER=gcc -DCMAKE_SKIP_RPATH=TRUE
make
sudo make install
cd ${ScriptPath}/Media
mkdir build
cd build
cmake -DCMAKE_INSTALL_PREFIX=/usr .. -DCMAKE_C_COMPILER=gcc -DCMAKE_SKIP_RPATH=TRUE
make
sudo make install
cd ${ScriptPath}/OMExecute
mkdir build
cd build
cmake -DCMAKE_INSTALL_PREFIX=/usr .. -DCMAKE_C_COMPILER=gcc -DCMAKE_SKIP_RPATH=TRUE
make
sudo make install
echo "build all so."
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化