大约有 47,000 项符合查询结果(耗时:0.0362秒) [XML]

https://www.tsingfun.com/it/cp... 

Undefined reference to symbol X509_free - C/C++ - 泛网 - 专注C/C++及内核技术

Undefined reference to symbol X509_freeundefined-reference-to-symbol-x509-freeUndefined reference to symbol X509_free 编译错误的解决方法:链接库中增加 -lcrypto,而非 -lcrypt参考:https: stackoverflow com questions 33215936 undefined-reference-to-symbol-x509-freeUndefined refer...
https://www.tsingfun.com/it/cp... 

【解决】eclipse新建项目报错:overlaps the location of another project:...

【解决】eclipse新建项目报错:overlaps the location of another project: 'xxx'eclipse-error-overlaps-the-location-of-another-projectEclipse新建项目时报错:overlaps the location of another project: & 39;xxx& 39;,确保workspace下没有重复的工程,但之前曾经添加并删...
https://www.tsingfun.com/it/cpp/gcc-asan.html 

gcc自带内存泄漏、内存越界检测工具 - asan - C/C++ - 泛网 - 专注C/C++及内核技术

gcc自带内存泄漏、内存越界检测工具 - asangcc-asanasan内存异常检测工具,功能类似valgrind,不过是gcc自带的原生工具,使用起来非常简单,只需要链接时加上 -lasan 即可。(编译选项也可以加上 -fsanitize=address)测试代码如 asan内...
https://www.tsingfun.com/it/cp... 

编译错误 error: ‘typeof’ cannot be used as a function - C/C++ - 泛网 - 专注C/C++及内核技术

编译错误 error: ‘typeof’ cannot be used as a functionerror-typeof-cannot-be-used-as-a-function编译一些开源的C项目,发现typeof关键字不能被识别,报错:error: ‘typeof’ cannot be used as a function。解决方法:修改C编译选项 -std=gnu99,使用GNU99 ...
https://www.tsingfun.com/it/cp... 

eclipse cdt 运行程序时添加依赖库路径 - C/C++ - 泛网 - 专注C/C++及内核技术

eclipse cdt 运行程序时添加依赖库路径eclipse-cdt-ld-library-path我们知道Linux即使依赖库和可执行文件在同一目录下,如果不使用 LD_LIBRARY_PATH 指定库路径(即当前目录)的话,仍然会报加载不到依赖库的错误。那么Eclipse CDT也是类似,...
https://www.tsingfun.com/it/cp... 

namespace “std” has no member “clamp” - C/C++ - 泛网 - 专注C/C++及内核技术

namespace “std” has no member “clamp”namespace-std-has-no-member-clamperror: ‘clamp’ is not a member of ‘std’namespace std has no member clampC++17特性,加编译选项 -std=c++17error: ‘clamp’ is not a member of ‘std’ namespace “std” h...
https://www.tsingfun.com/it/cp... 

【解决】munmap_chunk(): invalid pointer - C/C++ - 泛网 - 专注C/C++及内核技术

【解决】munmap_chunk(): invalid pointermunmap_chunk-invalid-pointer原因:new malloc出来的指针被覆盖掉了,然后delete free就会报这个错误。例如:char* word = (char*)malloc(10);word = "abc"; 应使用 strcpy(word, "abc");free(word) 原因:new/malloc出来的指针被...
https://www.tsingfun.com/it/cp... 

【解决】C、C++混合编译link失败问题 - C/C++ - 泛网 - 专注C/C++及内核技术

【解决】C、C++混合编译link失败问题c_cpp_mixed_compileC、C++混合编译时,C头文件不加 extern "C",函数按照C++编译会改变函数名称,导致link时报undefined reference to `xxx` 的 错误。加 extern "C" 解决,但是直接加的话 C、C++混合编译时,C...
https://www.tsingfun.com/it/cp... 

【解决】This is allowed only when policy CMP0079 is set to NEW. - C/C++ - 泛网 - 专注IT技能提升

【解决】This is allowed only when policy CMP0079 is set to NEW.This-is-allowed-only-when-policy-CMP0079-is-set-to-NEWcmake最低版本设置为3 13以上,可解决。cmake_minimum_required(VERSION 3 13) can fix the first problem 参考:https: gitlab kitware com cmake cmake - issues 19693cma...
https://www.tsingfun.com/it/cpp/cpu_avx_run.html 

CPU指令集avx程序无法运行,运行崩溃 - C/C++ - 泛网 - 专注C/C++及内核技术

CPU指令集avx程序无法运行,运行崩溃cpu_avx_run原因就是CPU不支持相应的指令集导致的。Linux上使用 lscpu 命令查看CPU指令集,看是否支持。比如_mm256_cmpeq_epi64 这个函数需要avx2指令集,但是CPU不支持,就导致程序崩溃起不来。原因...