C++,vs2010,编译出来的EXE,如果电脑上没有安装VC++2010且同目录下没有msvcp100.dll和msvcr100.dll,某些功能就无法运行。(不会提示什么缺少msvcp100.dll和msvcr100.dll,只是代码运行异常)。使用静态连接也没用。代码是用https://github.com/fancycode/...做的二次开发求大神~
学习是最好的投资!
Try changing the runtime library to /MT or /MTd during code generation. Of course, the linked libraries must also have the same settings, otherwise linking errors will occur
Try changing the runtime library to /MT or /MTd during code generation. Of course, the linked libraries must also have the same settings, otherwise linking errors will occur