VC++ LNK Errors With GLFW(GLFW 的 VC++ LNK 错误)
问题描述
我正在使用 VC++ 2010 来处理一些 OpenGL.然而,它正在成为一种痛苦.我不断收到错误代码.
I'm using VC++ 2010 to work with some OpenGL. However, it's becoming a pain. I keep getting error codes again and again.
这是我正在使用的代码:
Here is the code I am working with:
// Include standard headers
#include <stdio.h>
#include <stdlib.h>
// Include GLEW
#include <GL/glew.h>
// Include GLFW
#include <GL/glfw.h>
// Include GLM
#include <glm/glm.hpp>
using namespace glm;
int main( void ){
// Initialise GLFW
if( !glfwInit() ){
fprintf( stderr, "Failed to initialize GLFW
" );
return -1;
}
glfwOpenWindowHint(GLFW_FSAA_SAMPLES, 4);
glfwOpenWindowHint(GLFW_OPENGL_VERSION_MAJOR, 3);
glfwOpenWindowHint(GLFW_OPENGL_VERSION_MINOR, 3);
glfwOpenWindowHint(GLFW_OPENGL_PROFILE, GLFW_OPENGL_CORE_PROFILE);
// Open a window and create its OpenGL context
if( !glfwOpenWindow( 1024, 768, 0,0,0,0, 32,0, GLFW_WINDOW ) )
{
fprintf( stderr, "Failed to open GLFW window. If you have an Intel GPU, they are not 3.3 compatible. Try the 2.1 version of the tutorials.
" );
glfwTerminate();
return -1;
}
// Initialize GLEW
if (glewInit() != GLEW_OK) {
fprintf(stderr, "Failed to initialize GLEW
");
return -1;
}
glfwSetWindowTitle( "Tutorial 01" );
// Ensure we can capture the escape key being pressed below
glfwEnable( GLFW_STICKY_KEYS );
// Dark blue background
glClearColor(0.0f, 0.0f, 0.3f, 0.0f);
do{
// Draw nothing, see you in tutorial 2 !
// Swap buffers
glfwSwapBuffers();
} // Check if the ESC key was pressed or the window was closed
while( glfwGetKey( GLFW_KEY_ESC ) != GLFW_PRESS &&
glfwGetWindowParam( GLFW_OPENED ) );
// Close OpenGL window and terminate GLFW
glfwTerminate();
return 0;
}
这是我在编译上述代码后从 Visual Studio 得到的错误.输出似乎是链接问题,但是,我不确定如何正确地将 glfw 要求与编辑器链接.错误示例:
Here are the errors I am getting from Visual Studio after compiling the code above. The output appears to be linking issues, however, I'm not sure how to correctly link the glfw requirements with the editor. Example errors:
Error 52 error LNK1120: 10 unresolved externals C:UsersUsernamedocumentsvisual studio 2010ProjectsOpenGL FunDebugOpenGL Fun.exe OpenGL Fun
Error 42 error LNK2001: unresolved external symbol __imp__glClear@4 C:UsersUsernamedocumentsvisual studio 2010ProjectsOpenGL FunOpenGL FunGLFW.lib(win32_window.obj) OpenGL Fun
Error 39 error LNK2001: unresolved external symbol __imp__glClearColor@16 C:UsersUsernamedocumentsvisual studio 2010ProjectsOpenGL FunOpenGL FunGLFW.lib(win32_window.obj) OpenGL Fun
Error 50 error LNK2001: unresolved external symbol __imp__glGetIntegerv@8 C:UsersUsernamedocumentsvisual studio 2010ProjectsOpenGL FunOpenGL FunGLFW.lib(glext.obj) OpenGL Fun
Error 45 error LNK2001: unresolved external symbol __imp__wglGetProcAddress@4 C:UsersUsernamedocumentsvisual studio 2010ProjectsOpenGL FunOpenGL FunGLFW.lib(win32_glext.obj) OpenGL Fun
Error 41 error LNK2019: unresolved external symbol __imp__glClear@4 referenced in function _glfwOpenWindow C:UsersUsernamedocumentsvisual studio 2010ProjectsOpenGL FunOpenGL FunGLFW.lib(window.obj) OpenGL Fun
Error 38 error LNK2019: unresolved external symbol __imp__glClearColor@16 referenced in function _main C:UsersUsernamedocumentsvisual studio 2010ProjectsOpenGL FunOpenGL FunMain.obj OpenGL Fun
Error 40 error LNK2019: unresolved external symbol __imp__glewInit@0 referenced in function _main C:UsersUsernamedocumentsvisual studio 2010ProjectsOpenGL FunOpenGL FunMain.obj OpenGL Fun
Error 48 error LNK2019: unresolved external symbol __imp__glGetFloatv@8 referenced in function __glfwPlatformSetWindowSize C:UsersUsernamedocumentsvisual studio 2010ProjectsOpenGL FunOpenGL FunGLFW.lib(win32_window.obj) OpenGL Fun
Error 49 error LNK2019: unresolved external symbol __imp__glGetIntegerv@8 referenced in function __glfwPlatformSetWindowSize C:UsersUsernamedocumentsvisual studio 2010ProjectsOpenGL FunOpenGL FunGLFW.lib(win32_window.obj) OpenGL Fun
Error 51 error LNK2019: unresolved external symbol __imp__glGetString@4 referenced in function __glfwParseGLVersion C:UsersUsernamedocumentsvisual studio 2010ProjectsOpenGL FunOpenGL FunGLFW.lib(glext.obj) OpenGL Fun
Error 43 error LNK2019: unresolved external symbol __imp__wglCreateContext@4 referenced in function _createContext C:UsersUsernamedocumentsvisual studio 2010ProjectsOpenGL FunOpenGL FunGLFW.lib(win32_window.obj) OpenGL Fun
Error 47 error LNK2019: unresolved external symbol __imp__wglDeleteContext@4 referenced in function _destroyWindow C:UsersUsernamedocumentsvisual studio 2010ProjectsOpenGL FunOpenGL FunGLFW.lib(win32_window.obj) OpenGL Fun
Error 44 error LNK2019: unresolved external symbol __imp__wglGetProcAddress@4 referenced in function _initWGLExtensions C:UsersUsernamedocumentsvisual studio 2010ProjectsOpenGL FunOpenGL FunGLFW.lib(win32_window.obj) OpenGL Fun
Error 46 error LNK2019: unresolved external symbol __imp__wglMakeCurrent@8 referenced in function _createWindow C:UsersUsernamedocumentsvisual studio 2010ProjectsOpenGL FunOpenGL FunGLFW.lib(win32_window.obj) OpenGL Fun
推荐答案
在解决方案资源管理器中,右键单击您的项目并选择properties
.从配置列表框中,选择所有配置".在左侧窗格中,选择 Linker
子树,然后选择 input
选项.在Additional Dependencies"下添加opengl32.lib
.
In the solution explorer, right-click your project and select properties
. From the configuration list box, select "all configurations". In the left pane, select the Linker
sub-tree and then the input
option. Add opengl32.lib
under "Additional Dependencies".
这篇关于GLFW 的 VC++ LNK 错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:GLFW 的 VC++ LNK 错误
基础教程推荐
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 从 std::cin 读取密码 2021-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01