随笔分类 - LINK&LOAD
各个平台编译选项
摘要://check gcc version, gcc already installed gcc -v g++ -v install g++ sudo apt-get install g++ install cmake and cmake-gui sudo apt-get install cmake s
阅读全文
摘要:"CRT Library Features" The new home for Visual Studio documentation is Visual Studio 2017 Documentation on docs.microsoft.com. The latest version of t
阅读全文
摘要:无法解析的外部符号 _WinMain@16,该符号在函数 ___tmainCRTStartup 中被引用 出现原因: 连接程序在负责连接可执行程序时,选择相应的c/c++运行时启动函数。如果设定了/subsystem:windows连接程序开关,那么连接程序会试图寻找WinMain或wWinMain
阅读全文
摘要:无论windows,linux 所有的库 ,dlib,opencv 通过cmake gui 设置好静态库, 动态库,和其他各个选项 Tips: cmake 优先级用cmake gui,因为命令太多,容易敲错!!!!! cmake 默认是制作动态库.so, 若需要制作静态库 1.BUILD_SHARE
阅读全文
摘要:https://msdn.microsoft.com/en us/library/f6xx1b1z.aspx https://www.cnblogs.com/runningRain/p/5674833.html
阅读全文
摘要:https://msdn.microsoft.com/library/2kzt1wy3%28v=vs.100%29.aspx http://blog.csdn.net/ybxuwei/article/details/9095067 /MD 动态链接 使应用程序使用运行库的多线程并特定于 DLL 的版
阅读全文
摘要:关于VS中区分debug与release,32位与64位编译的宏定义 1.判断是debug编译还是release编译。 如果_DEBUG定义了表示是debug编译,否则是release编译。 2.判断是32位编译还是64位编译。 在 Win32 配置下,_WIN32 有定义,_WIN64 没有定义。
阅读全文
摘要:1.安装 http://www.cmake.org/download/ 大家可以根据需求,下载一个适合的版本 我的机器环境 Linux ubuntu 3.13.0-24-generic #46-Ubuntu SMP Thu Apr 10 19:08:14 UTC 2014 i686 i686 i68
阅读全文