随笔 - 170
文章 - 0
评论 - 16
阅读 -
35387
07 2023 档案
下载各种包 https://pkgs.org
摘要:https://pkgs.org
阅读全文
centos下编译 protobuf
摘要:1、 git clone https://github.com/protocolbuffers/protobuf.git 2、 然后cd到protobuf目录执行:git submodule update --init --recursive 3、 然后使用yum安装对应的库,yum install
阅读全文
centos 编译安装 protobuf
摘要:1、安装bazel wget https://copr.fedorainfracloud.org/coprs/vbatts/bazel/repo/epel-7/vbatts-bazel-epel-7.repo --no-check-certificate cp vbatts-bazel-epel-7
阅读全文
Ubuntu apt
摘要:1、 apt-get install --download-only libicui18n.so.66 会把安装包下载到 /var/cache/apt/archives 中 2、下载 aptitude clean aptitude --download-only install 安装包 mv /va
阅读全文
gcc通过指定链接库的全名,可以选择链接哪个动态库版本
摘要:例子 : LIBS += -l ncurses -lfilelock -lpthread -lrt -lprotobuf -lsqlite3 -lpcre2-8 -l:libcurl.so.4 -lhs curl链接的是 libcurl.so.4
阅读全文