- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试将 GLEW 和 GLFW dll 链接到我的项目。我正在使用 SCons 来制作。我的 SConstruct 文件是:
env=Environment();
env.SharedLibrary('glfw3.dll');
env.SharedLibrary('glew32.dll');
env.Program('tutorial01.cpp');
glfw3.dll 和 glew32.dll 都在 C:\Windows\System32 中。当我尝试构建它时,构建结果如下:
scons: Reading SConscript files ...
scons: done reading SConscript files.
scons: Building targets ...
link /nologo /OUT:tutorial01.exe tutorial01.obj
tutorial01.obj : error LNK2019: unresolved external symbol __imp_glClearColor referenced in function main
tutorial01.obj : error LNK2019: unresolved external symbol glewInit referenced in function main
tutorial01.obj : error LNK2019: unresolved external symbol __imp_glfwInit referenced in function main
tutorial01.obj : error LNK2019: unresolved external symbol __imp_glfwTerminate referenced in function main
tutorial01.obj : error LNK2019: unresolved external symbol __imp_glfwWindowHint referenced in function main
tutorial01.obj : error LNK2019: unresolved external symbol __imp_glfwCreateWindow referenced in function main
tutorial01.obj : error LNK2019: unresolved external symbol __imp_glfwWindowShouldClose referenced in function main
tutorial01.obj : error LNK2019: unresolved external symbol __imp_glfwPollEvents referenced in function main
tutorial01.obj : error LNK2019: unresolved external symbol __imp_glfwSetInputMode referenced in function main
tutorial01.obj : error LNK2019: unresolved external symbol __imp_glfwGetKey referenced in function main
tutorial01.obj : error LNK2019: unresolved external symbol __imp_glfwMakeContextCurrent referenced in function main
tutorial01.obj : error LNK2019: unresolved external symbol __imp_glfwSwapBuffers referenced in function main
tutorial01.exe : fatal error LNK1120: 12 unresolved externals
scons: *** [tutorial01.exe] Error 1120
scons: building terminated because of errors.
scons: *** Found dependency cycle(s):
glew32.lib -> glew32.lib
glfw3.dll -> glfw3.dll
File "C:\Python27\Scripts\..\Lib\site-packages\scons-2.3.3\SCons\Taskmaster.py", line 1043, in cleanup
[Finished in 0.9s with exit code 2]
[cmd: ['C:\\Python27\\Scripts\\Scons.bat']]
[dir: C:\Users\mark\programming\sublime-try2]
[path: C:\PROGRAM FILES (X86)\INTEL\ICLS CLIENT\;C:\PROGRAM FILES\INTEL\ICLS CLIENT\;C:\PHP\;C:\PROGRAM FILES (X86)\JAHSHAKA\..\MLT\BIN;C:\PROGRAM FILES (X86)\OPENLIBRARIES\BIN;;C:\NODEJS\;C:\WINDOWS\SYSTEM32;C:\WINDOWS;C:\WINDOWS\SYSTEM32\WBEM;C:\WINDOWS\SYSTEM32\WINDOWSPOWERSHELL\V1.0\;C:\PROGRAM FILES (X86)\INTEL\INTEL(R) MANAGEMENT ENGINE COMPONENTS\DAL;C:\PROGRAM FILES (X86)\INTEL\INTEL(R) MANAGEMENT ENGINE COMPONENTS\IPT;C:\PROGRAM FILES\MICROSOFT SQL SERVER\110\TOOLS\BINN\;C:\PROGRAM FILES (X86)\QUICKTIME\QTSYSTEM\;C:\PROGRAM FILES\INTEL\INTEL(R) MANAGEMENT ENGINE COMPONENTS\DAL;C:\PROGRAM FILES\INTEL\INTEL(R) MANAGEMENT ENGINE COMPONENTS\IPT;C:\PROGRAM FILES (X86)\INTEL\INTEL(R) MANAGEMENT ENGINE COMPONENTS\DAL;C:\PROGRAM FILES (X86)\INTEL\INTEL(R) MANAGEMENT ENGINE COMPONENTS\IPT;C:\Program Files\Lenovo\Bluetooth Software\;C:\Program Files\Lenovo\Bluetooth Software\syswow64;C:\Program Files (x86)\K-3D 0.8.0.1\bin;C:\Program Files (x86)\Microsoft SDKs\TypeScript\1.0\;C:\Program Files (x86)\Windows Kits\8.1\Windows Performance Toolkit\;C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin\;C:\Python27\Scripts\;C:\Users\mark\AppData\Roaming\npm]
暂时忽略链接错误,最后一部分是什么意思,它说“发现依赖循环”?那重要吗?难道我做错了什么?此外,tutorial01.cpp 来自 opengl-tutorial.org,但稍作修改:
// Include standard headers
#include <stdio.h>
#include <stdlib.h>
// we're building a static!
#define GLEW_STATIC
// Include GLEW
#include <GL/glew.h>
// so it works with dll
#define GLFW_DLL
// Include GLFW
#include <glfw3.h>
GLFWwindow* window;
// Include GLM
#include <glm/glm.hpp>
using namespace glm;
int main( void )
{
// Initialise GLFW
if( !glfwInit() )
{
fprintf( stderr, "Failed to initialize GLFW\n" );
return -1;
}
glfwWindowHint(GLFW_SAMPLES, 4);
glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 3);
glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 3);
glfwWindowHint(GLFW_OPENGL_PROFILE, GLFW_OPENGL_CORE_PROFILE);
// Open a window and create its OpenGL context
window = glfwCreateWindow( 1024, 768, "Tutorial 01", NULL, NULL);
if( window == NULL ){
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.\n" );
glfwTerminate();
return -1;
}
glfwMakeContextCurrent(window);
// Initialize GLEW
if (glewInit() != GLEW_OK) {
fprintf(stderr, "Failed to initialize GLEW\n");
return -1;
}
// Ensure we can capture the escape key being pressed below
glfwSetInputMode(window, GLFW_STICKY_KEYS, GL_TRUE);
// Dark blue background
glClearColor(0.0f, 0.0f, 0.4f, 0.0f);
do{
// Draw nothing, see you in tutorial 2 !
// Swap buffers
glfwSwapBuffers(window);
glfwPollEvents();
} // Check if the ESC key was pressed or the window was closed
while( glfwGetKey(window, GLFW_KEY_ESCAPE ) != GLFW_PRESS &&
glfwWindowShouldClose(window) == 0 );
// Close OpenGL window and terminate GLFW
glfwTerminate();
return 0;
}
头文件也正确地位于 visual studio includes 文件夹中
为什么我会收到依赖周期错误?还是链接错误?
最佳答案
SharedLibrary 方法不是用来指定您要使用 DLL 的,而是创建它们的。要使用已经存在的库/DLL,您必须将其名称添加到 LIBS 环境变量中,从那里为实际的链接器调用获取它。
您看到的依赖项错误与您正在尝试创建已存在的 DLL 这一事实直接相关。
从您所写的内容来看,您似乎刚刚开始使用 SCons...所以我的建议是查看用户指南(有关 HTML 版本,请参阅 http://www.scons.org/doc/production/HTML/scons-user.html)并至少浏览一下简单示例.
关于c++ - 依赖循环 Scons GLEW、GLFW,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26152442/
我在 gobject 上阅读了一个维基百科页面,上面写着, Depending only on GLib and libc, GObject is a cornerstone of GNOME and
如何注册一个依赖属性,其值是使用另一个依赖属性的值计算的? 由于 .NET 属性包装器在运行时被 WPF 绕过,因此不应在 getter 和 setter 中包含逻辑。解决方案通常是使用 Proper
我一直在尝试将 ActionbarSherlock maven 依赖项添加到我的项目中 com.actionbarsherlock library 4.2.0 在我的 po
http://tutorials.jenkov.com/ood/understanding-dependencies.html#whatis说(强调我的): Whenever a class A us
我对所有这些魔法有点不清楚。 据我了解,依赖属性是从 DependencyObject 继承的,因此存储值: 如果分配了值(在本地字典中),则在实例本身中 或者如果未指定值,则从指向父元素的链接中获取
我刚刚更新了在 ASP.NET Framework 4.5.2 版上运行的 MVC Web 应用程序。我正在使用 Twilio 发送 SMS 消息: var twilio = new TwilioRe
我刚刚发现了一件令人生畏的事情。 spring 依赖坐标有两个版本。 项目依赖于 spring mvc 和 spring flow。有两组并行的依赖项。 Spring MVC 具有以下方案的依赖项
我正在尝试包含 的 maven 依赖项 org.jacorb jacorb 2.3.1 依赖已解决,但它导致另一个依赖 picocontainer 出现问题: [ERROR
我正在尝试在 Haskell 项目中包含特定版本的库。该库是住宿加早餐型的(用于 martix 操作),但我需要特定的 0.4.3 版本,该版本修复了乘法实现的错误。 所以,我的 stack.yaml
有谁知道如何制作依赖的 UIPickerView.例如,当我选择组件一的第 2 行时,组件二的标题会发生变化吗? 我在互联网上查找过,没有真正的答案,我尝试过使用 if 和 switch 语句,但它们
我正在编写一个用于验收测试的项目,由于各种原因,这依赖于另一个打包为 WAR 的项目。我已成功使用 maven-dependency-plugin 解压 WAR,但无法让我的项目包含解压的 WEB-I
或多或少我在 session 上大量构建我的网站(特别是重定向用户等),我很好奇这是否是一种危险的做法。禁用浏览器 cookie 保存的用户的大致比例是多少?我愿意接受任何建议:) 谢谢 最佳答案 s
开始玩 Scala futures,我被依赖的 futures 困住了。 让我们举个例子。我搜索地点并获得 Future[Seq[Place]]。对于这些地点中的每一个,我搜索最近的地铁站(该服务返回
或多或少我在 session 上大量构建我的网站(特别是重定向用户等),我很好奇这是否是一种危险的做法。禁用浏览器 cookie 保存的用户的大致比例是多少?我愿意接受任何建议:) 谢谢 最佳答案 s
我有一个二进制文件,需要一些 *.so 文件才能执行。现在,当我尝试在一些旧机器上执行它时,它会显示 /lib/libc.so.6: version `GLIBC_2.4' not found 如何将
我尝试使用 Dygraph 来表示图表,我在 https://github.com/danvk/dygraphs 中找到了代码,但是它有太多的依赖文件,我觉得很烦人。是否有一个文件可以容纳所有必需的
我正在处理一个 javascript 文件,该文件 a) 声明一个具有函数的对象,并且 b) 使用它期望在外部声明的散列调用该对象的 init 函数。我的 Jasmine 规范提示它找不到哈希,因为它
最近我一直在学习 Angular 并且进展顺利,但是关于依赖注入(inject)的一些事情我仍然不清楚。 是否有任何理由在我的 app.js 文件中声明我的应用程序的其他部分(服务、 Controll
考虑一个名为 foo 的表,它有 id (PRIMARY & AUTO_INCREMENT) 列。我正在向该表中插入一行,挑战从此时开始。 $db->query("INSERT INTO `foo`
我正在使用级联下拉 jquery 插件。 (https://github.com/dnasir/jquery-cascading-dropdown) 我有两个下拉菜单。 “客户端”和“站点”。 根据您
我是一名优秀的程序员,十分优秀!