摘要: qDebug 换行 阅读全文
posted @ 2021-11-05 16:07 soso101 阅读(1192) 评论(0) 推荐(0) 编辑
摘要: LNK2026 阅读全文
posted @ 2021-09-26 14:31 soso101 阅读(371) 评论(0) 推荐(0) 编辑
摘要: NOMINMAX 阅读全文
posted @ 2021-09-16 20:20 soso101 阅读(79) 评论(0) 推荐(0) 编辑
摘要: LNK2005 阅读全文
posted @ 2021-09-09 14:49 soso101 阅读(157) 评论(0) 推荐(0) 编辑
摘要: VS error C1047 阅读全文
posted @ 2021-09-07 16:02 soso101 阅读(432) 评论(0) 推荐(0) 编辑
摘要: LNK2001 阅读全文
posted @ 2021-09-07 14:42 soso101 阅读(1351) 评论(0) 推荐(0) 编辑
摘要: VS utf-8 阅读全文
posted @ 2021-09-02 08:46 soso101 阅读(305) 评论(0) 推荐(0) 编辑
摘要: vs error 2440 阅读全文
posted @ 2021-09-02 08:34 soso101 阅读(96) 评论(0) 推荐(0) 编辑
摘要: 这是个很典型的问题,在MSDN上也有描述。问题是这样的: 在一个DLL里面分配内存,然后在DLL的调用者EXE那里释放内存。 当DLL和EXE里面有一个是使用MT连接CRT的时候就有问题。如果DLL和EXE都使用MD,那么就没有问题。 先来看一下问题 直接使用原生指针来传递 在DLL里面创建一个导出 阅读全文
posted @ 2021-08-19 08:22 soso101 阅读(331) 评论(0) 推荐(0) 编辑
摘要: __acrt_first_block == header 阅读全文
posted @ 2021-08-19 08:11 soso101 阅读(1062) 评论(0) 推荐(0) 编辑
摘要: qtcreator项目选项配置 阅读全文
posted @ 2021-08-08 15:34 soso101 阅读(1294) 评论(0) 推荐(0) 编辑
摘要: error LNK2019 _WinMain 阅读全文
posted @ 2021-08-07 16:06 soso101 阅读(86) 评论(0) 推荐(0) 编辑
摘要: 全局变量和全局静态变量 阅读全文
posted @ 2021-08-05 14:57 soso101 阅读(196) 评论(0) 推荐(0) 编辑
摘要: /home/pi/untitled4: /usr/lib/arm-linux-gnueabihf/libQt5Qml.so.5: no version information available (required by /home/pi/untitled4) /home/pi/untitled4: 阅读全文
posted @ 2021-06-23 10:49 soso101 阅读(636) 评论(0) 推荐(0) 编辑
摘要: win10下使用VS2019编译gdal3 阅读全文
posted @ 2021-06-04 10:07 soso101 阅读(1131) 评论(0) 推荐(0) 编辑
摘要: win10下使用VS2019编译PROJ6 阅读全文
posted @ 2021-06-04 09:13 soso101 阅读(1419) 评论(0) 推荐(0) 编辑
摘要: win10下使用VS2019静态动态编译sqlite3 阅读全文
posted @ 2021-06-03 18:37 soso101 阅读(2275) 评论(0) 推荐(2) 编辑
摘要: 声明:转载自Windows 下主程序与动态库(*.dll)释放对方分配的内存操作要点 同样的代码程序: 主程序中释放了一块在 动态库(*.dll)或共享库(*.so) 中分配的内存, Windows 将会出现程序崩溃,而 Linux 则正常运行。 在 linux 下,每个进程只有一个 heap , 阅读全文
posted @ 2021-05-28 08:27 soso101 阅读(349) 评论(0) 推荐(0) 编辑
摘要: 最近编译windows程序时发现有些动态库无法生成lib文件,检查后发现有些是没有加__declspec(dllexport),有的导出被定义为宏,然而该宏在一些错误的情况下并没有展开。 阅读全文
posted @ 2021-05-21 10:41 soso101 阅读(96) 评论(0) 推荐(0) 编辑
摘要: 检查后发现,将导出的函数是.c文件,vs判定是C源文件,将其改为cpp文件或去掉“C”均可。 阅读全文
posted @ 2021-05-21 10:34 soso101 阅读(857) 评论(0) 推荐(0) 编辑