
linux
sunStd
Time is a file that wears and makes no noise
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
vscode GDB 提示 "Unknown Source"
使用 vscode remote debug 调试linux 程序发现部分文件 可以断点,而其他文件失败,提示如图:breakpoint address could not be obtained.原因: 当前项目混合有C C++, 而编译选项只设置了CFLAG ,而没有设置 CXXFLAG,修复:CXXFLAGS=-std=c++...原创 2020-04-22 19:30:19 · 2402 阅读 · 0 评论 -
Linux ‘_snprintf’ was not declared in this scope
snprintf函数并不是标准c/c++中规定的函数,但是在许多编译器中,厂商提供了其实现的版本。 在gcc中,该函数名称就snprintf,而在VC中称为_snprintf#ifdef _WIN32#include <windows.h>#define snprintf _snprintf#else#include <pthread.h>#endif...原创 2020-02-26 18:10:13 · 3117 阅读 · 0 评论 -
centos 静态编译MP4box
参考 文章:https://blog.youkuaiyun.com/qq_16053163/article/details/787017931. github下载gpac git clone --branch v0.7.1 https://github.com/gpac/gpac --depth=12.cd gpac chmod +x configure ./configu...原创 2019-06-17 10:59:55 · 386 阅读 · 0 评论