好的,这是东西。我有我需要的所有IL文件,即
DevIL.dll
DevIL.lib
ILU.dll
ILU.lib
ILUT.dll
ILUT.lib
config.h
config.h.in
devil_cpp_wrapper.h
devil_internal_exports.h
il.h
ilu.h
ilu_region.h
ilut.h
ilut_config.h
我的项目目录如下所示,假设我的项目名称为“Project1”
|-Debug---Project1.pdb
|
| |---Debug---[loads of files]
| |
| |---Glut---[OpenGL files]
| |
| |---IL---[all the files mentioned above]
|-Project1---|
| |---image.bmp
Project Folder---| |
| |---[header and .cpp files I made in the project]
| |
| |---[files produced by Visual Studio]
|
|-ipch---[unrelated stuff]
|
|-Project1.sln
|
|-[other files VS created]
如上所述,我已将所有DevIL文件放入IL文件夹中,并且我确定我正在使用它们的unicode兼容版本,因为我正在为项目使用Unicode字符集。在我的“其他依赖项”中,
ilut.lib; ilu.lib; DevIL.lib;
因此,依赖项就在那里,我知道那不是问题。
毕竟,我仍然遇到链接器错误,主要是所有IL函数的
LNK2019:unresolved external symbol__imp_
。我想念什么?在我看来,这可能与项目属性或文件本身有关……也许我错过了文件?
编辑:这是输出消息
1>------ Build started: Project: Final Year Project, Configuration: Debug Win32 ------
1>Build started 29/4/2011 12:46:04 pm.
1>InitializeBuildStatus:
1> Touching "Debug\Final Year Project.unsuccessfulbuild".
1>ClCompile:
1> Main.cpp
1>c:\users\xxxx\desktop\final year project 0.2\final year project\main.cpp(152): warning C4390: ';' : empty controlled statement found; is this the intent?
1>c:\users\xxxx\desktop\final year project 0.2\final year project\main.cpp(141): warning C4101: 'alpha' : unreferenced local variable
1>ManifestResourceCompile:
1> All outputs are up-to-date.
1>Main.obj : error LNK2019: unresolved external symbol __imp__ilInit@0 referenced in function "public: static void __cdecl Main::Init(int,char * *)" (?Init@Main@@SAXHPAPAD@Z)
1>Main.obj : error LNK2019: unresolved external symbol __imp__ilDeleteImages@8 referenced in function "public: static void __cdecl Main::DisplayScene(void)" (?DisplayScene@Main@@SAXXZ)
1>Main.obj : error LNK2019: unresolved external symbol __imp__ilGetData@0 referenced in function "public: static void __cdecl Main::DisplayScene(void)" (?DisplayScene@Main@@SAXXZ)
1>Main.obj : error LNK2019: unresolved external symbol __imp__ilConvertImage@8 referenced in function "public: static void __cdecl Main::DisplayScene(void)" (?DisplayScene@Main@@SAXXZ)
1>Main.obj : error LNK2019: unresolved external symbol __imp__ilGetInteger@4 referenced in function "public: static void __cdecl Main::DisplayScene(void)" (?DisplayScene@Main@@SAXXZ)
1>Main.obj : error LNK2019: unresolved external symbol __imp__ilLoadImage@4 referenced in function "public: static void __cdecl Main::DisplayScene(void)" (?DisplayScene@Main@@SAXXZ)
1>Main.obj : error LNK2019: unresolved external symbol __imp__ilBindImage@4 referenced in function "public: static void __cdecl Main::DisplayScene(void)" (?DisplayScene@Main@@SAXXZ)
1>Main.obj : error LNK2019: unresolved external symbol __imp__ilGenImages@8 referenced in function "public: static void __cdecl Main::DisplayScene(void)" (?DisplayScene@Main@@SAXXZ)
1>C:\Users\xxxx\Desktop\Final Year Project 0.2\Debug\Final Year Project.exe : fatal error LNK1120: 8 unresolved externals
1>
1>Build FAILED.
1>
1>Time Elapsed 00:00:01.93
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
最佳答案
由于添加了构建输出,因此答案很简单:链接器错误与DevIL完全无关。
您需要链接到SDL(简单DirectMedia层)。
由于SDL具有C接口(interface),并且-IIRC-不需要DLL使用与应用程序相同的堆,因此VC8 version of the "Development Libraries"应该很好(即使您使用VC10)。只需将SDL.lib
添加到“其他依赖项”,就可以了。
编辑
好的。
你要么
至少我没有想到其他解释。
您的构建日志中提到的名称(
__imp__ilInit@0
等)是正确的,并且当前的“DevIL SDK”(DevIL 1.7.8 SDK for 32-bit Windows)可以在VC10上正常工作(我刚刚对其进行了验证)。为了确保您针对的是DevIL.lib等,请在main.cpp文件中输入以下内容:
#pragma comment(lib, "DevIL.lib")
#pragma comment(lib, "ILU.lib")
#pragma comment(lib, "ILUT.lib")
为确保链接到这些文件的正确版本,请重新下载整个SDK,然后尝试使用新文件。
编辑2
由于我获得了一半的奖励,所以我觉得我应该更有帮助:)
您可以尝试的最后一件事:启用详细的链接器输出,以检查链接器是否找到
DevIL.lib
的正确版本。 (如果找不到任何DevIL.lib
,则会收到一个错误的LNK1104: cannot open file 'DevIL.lib'
,并且由于未收到该消息,所以这可能不是问题。)要启用详细的链接器输出,请添加
/VERBOSE
开关(在“配置设置”->“链接器”->“命令行”->“其他选项”下)。那会给你大量的信息。将它们复制到您喜欢的编辑器中,并搜索包含
DevIL.lib
的行。其中一行应读取Searching X:\path\to\DevIL.lib:
-这是链接器正在使用的DevIL.lib
拷贝的路径。如果这不是从下载的SDK复制文件的路径,则说明存在问题。而且,如果没有包含
DevIL.lib
的行,则链接器甚至不会尝试找到它。但是,我从未见过#pragma comment
失败,因此,如果您确实添加了那些行,那肯定是不可能的。顺便说一句:如果您能解决这个问题,请告诉我。这太奇怪了,我真的很想知道发生了什么事:)