1 Star 0 Fork 3

Lingtao Zeng/opensource_damo

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
build.sh 494 Bytes
一键复制 编辑 原始数据 按行查看 历史
huangduirong 提交于 2023-05-10 11:44 . personal damo
#!/bin/sh
archi=`uname -m`
if [ x"$archi" != x"aarch64" ]; then
mkdir -p /usr/include/ifm_nettle/
cp /home/huangduirong/gitee/personal/ifm_nettle/src/*.h /usr/include/ifm_nettle/
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/home/huangduirong/gitee/personal/ifm_nettle/build/src/
gcc main.c nettle.c ifm_nettle.c -lnettle -g -o main
else
gcc main.c nettle.c ifm_nettle.c -lnettle -lwd -g -o main
fi
if [ $? -ne 0 ];then
echo "Failed: gcc failed, exit"
exit 1
fi
./main
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/lingtao2023/opensource_damo.git
git@gitee.com:lingtao2023/opensource_damo.git
lingtao2023
opensource_damo
opensource_damo
master

搜索帮助