Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
build_so.sh 709 Bytes
Copy Edit Raw Blame History
fuyangchenghu authored 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 助手
尝试更多
代码解读
代码找茬
代码优化