未来心不可得

分类 默认分类 下的文章

July 5, 2020

编译gcc10踩了个小坑

20200730 Update:Use spack to make it super easily. https://blog.vrqq.org/archives/690/--------分割线-------------首先gcc10依赖libgmplibmpfr 这个依赖上面那个libmpc 这个以来上面两个然后就就无脑./configure --prefix=/home/xx/envlo...
June 20, 2020

OpenSSL TLS1.3初探

Introduction首先TLS:可以理解TLS为一个加密/解密黑盒,例如TLS1.2、SSL3.0等等都是不同的黑盒种类,而其中选取什么加密算法 指的是该黑盒的运行参数。TLS怎么用:可以理解成“一头plaintext进,另一头ciphertext出”,经TCP通道,送达另一端黑盒“ciphertext进,piantext出”一般使用TLS over TCP,首先TLS不参与TCP握手,...
June 15, 2020

vs2019下载 系统dll pdb符号表

Symbol file not loaded比如 ntdll.pdb, wKernelBase.pdb 啥的,你是否有些❓为什么vs带了下载功能 但又下下载不了被墙了呗!添加以下地址到梯子表(以及用户PAC表)referencesource.microsoft.com, msdl.microsoft.com, *.blob.core.windows.net用户PAC规则去掉型号即可,例如最后...
May 9, 2020

conan快速上手

conan客户端安装pip3 install conan --user~/.conan/profiles 里生成default profile,包括下载包时候想要的 系统platform/编译器/ReleaseOrDebug等等,这个叫Setting~/.conan/remotes.json 里是repo信息,仅使用私有库时可以删除公有repoJFrog Artifactory C++ CE...
May 1, 2020

ABI, dll-boundary, STL, and unique_ptr?

To see a lot of reference, there's some differences of ideas about that:Is it safety to use std::shared_ptr and std::unique_ptr at DLL boundary?Pros:Safe to use std::unique_ptr : https://www.codepr...