上一页 1 2 3 4 5 6 ··· 112 下一页
摘要: 源码下载 https://jpegclub.org/reference/reference-sources/ 编译 ./configure -prefix=/home/zxc/jpeg-9e/output make -j16 make install 阅读全文
posted @ 2023-03-03 10:51 thomas_blog 阅读(13) 评论(0) 推荐(0) 编辑
摘要: 目前表面在用,网络负荷不高 官网下载 http://www.oberhumer.com/opensource/lzo/#download 编译 export CFLAGS=-m64 ./configure -enable-shared -prefix=/home/zxc/lzo-2.10/outpu 阅读全文
posted @ 2023-03-03 09:59 thomas_blog 阅读(20) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <tuple> int main() { std::tuple<int, char, float> tuple; tuple = std::make_tuple(18, 'a', 2.5); int a; char b; float c; s 阅读全文
posted @ 2023-01-31 13:36 thomas_blog 阅读(28) 评论(0) 推荐(0) 编辑
摘要: INCS += -I ./CPP/include/ -I . FILE += $(wildcard *.cpp) FILE += $(wildcard GenICamA/*.cpp) FILE += $(wildcard CLProtocolA/*.cpp) FILE += $(wildcard G 阅读全文
posted @ 2023-01-10 16:07 thomas_blog 阅读(199) 评论(0) 推荐(0) 编辑
摘要: linux环境运行arm docker镜像 docker run -it arm64v8/ubuntu:v2 /bin/sh exec /bin/sh: exec format error docker run --rm --privileged multiarch/qemu-user-static 阅读全文
posted @ 2022-12-22 13:43 thomas_blog 阅读(1862) 评论(0) 推荐(0) 编辑
摘要: ptmalloc ptmalloc是glibc默认的内存管理器 tcmalloc tcmalloc是Google开源的一个内存管理库,作为glibc malloc的替代品。目前已经在chrome、safari等知名软件中运用 对于小内存的分配,有非常明显性能优势 也减少了多线程程序中的锁竞争情况 j 阅读全文
posted @ 2022-12-20 12:40 thomas_blog 阅读(177) 评论(0) 推荐(0) 编辑
摘要: 查看wsl默认配置 wsl -l 适用于 Linux 的 Windows 子系统分发版: docker-desktop-data (默认) docker-desktop Ubuntu-20.04 docker-desktop:安装的docker for windows Ubuntu-20.04:手动 阅读全文
posted @ 2022-12-07 12:23 thomas_blog 阅读(338) 评论(0) 推荐(0) 编辑
摘要: 使用 WSL 在 Windows 上安装 Linux wsl --install 其中,也讲到Linux卸载; 如果wsl安装Linux失败,可以参考如下 利用 Microsoft Store 安装 Linux 发行版 我是遇到,win11安装的时候,莫名其妙的自动停止下载,应该不是网络的问题 所以 阅读全文
posted @ 2022-12-06 14:49 thomas_blog 阅读(213) 评论(0) 推荐(0) 编辑
摘要: apt install openssh-server vim /etc/ssh/sshd_config Port 22 PermitRootLogin yes #root登录 /etc/init.d/ssh start 出现错误 # service ssh start * Starting Open 阅读全文
posted @ 2022-12-06 13:53 thomas_blog 阅读(17) 评论(0) 推荐(0) 编辑
摘要: mkdir build vim cv_cmake.sh #!/bin/bash cmake \ -D CMAKE_BUILD_TYPE=Release \ -D CMAKE_INSTALL_PREFIX=/usr \ -D BUILD_PNG=OFF \ -D BUILD_TIFF=OFF \ -D 阅读全文
posted @ 2022-12-05 19:12 thomas_blog 阅读(255) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 112 下一页