02 2023 档案

摘要:参考博客: https://webrtc.org.cn/mirror/#linux%E2%80%8B_compile 阅读全文
posted @ 2023-02-22 10:23 angry_gladiator 阅读(22) 评论(0) 推荐(0)
摘要:基础镜像:https://hub.docker.com/layers/paddlecloud/paddleocr/2.6-gpu-cuda11.2-cudnn8-latest/images/sha256-68dc01231ea4530fa48474a09866757737988e36a4dfd75c 阅读全文
posted @ 2023-02-16 10:15 angry_gladiator 阅读(81) 评论(0) 推荐(0)
摘要:execl函数:头文件: #include<unistd.h>功能: 为进程重载0-3G的用户空间,可与fork函数搭配使用语法: int execl("绝对路径", “标识符”, “需要的参数”(需要多少传入多少) ,NULL);返回值 :失败返回 -1 NULL 最后这个必须传NULL,否则函数 阅读全文
posted @ 2023-02-13 17:10 angry_gladiator 阅读(24) 评论(0) 推荐(0)
摘要:指定gcc版本:update-alternatives --config gcc 指定gcc版本:update-alternatives --config g++ 阅读全文
posted @ 2023-02-13 17:01 angry_gladiator 阅读(42) 评论(0) 推荐(0)
摘要:CMake平台判断: if(CMAKE_SYSTEM_PROCESSOR MATCHES "^(arm|aarch64)") #### elseif(CMAKE_SYSTEM_PROCESSOR MATCHES "^(x86_64)") #### endif() 阅读全文
posted @ 2023-02-13 16:50 angry_gladiator 阅读(250) 评论(0) 推荐(0)