VS2013编译运行常见错误及解决方法

在用VS2013做项目时经常会遇到的一些错误,在这里做一下记录


一、

    错误 1 error LNK2019: 无法解析的外部符号 __imp____glutInitWithExit@12,该符号在函数 _glutInit_ATEXIT_HACK@8 中被引用 E:\VS\graphics1\graphics1\graphics1.obj graphics1

    错误 2 error LNK2019: 无法解析的外部符号 __imp____glutCreateWindowWithExit@8,该符号在函数 _glutCreateWindow_ATEXIT_HACK@4 中被引用 E:\VS\graphics1\graphics1\graphics1.obj graphics1

    错误 3 error LNK1120: 2 个无法解析的外部命令 E:\VS\graphics1\Debug\graphics1.exe 1 1 graphics1


解决方案:在#include 前添加    #define GLUT_DISABLE_ATEXIT_HACK



你可能感兴趣的:(MFC)