如何在MinGW中使用FLTK 1.1 dll?

发布于 2024-11-28 20:26:12 字数 729 浏览 2 评论 0原文

我正在尝试使用 MinGW 编译一个使用 fltk 库的项目。每当使用 fltk 访问文件时,它都会告诉我“找不到 -lfltk”。

我知道这取决于获取库的 .dll 以及我将其放置的位置,但我在解决这个问题时遇到了很多麻烦。我在 fltk 文件夹中发现了两个文件,名为 fltk.lib.dsp 和 fltkdll.dsp。我尝试将这些文件放入我的 system32 文件夹中,但这不起作用。我猜这是因为这些都是 VC++ 6 项目文件,而不是实际上的 .dll 和 .lib 文件。我找到这篇文章:

http://www.fltk.org/ articles.php?L372+I0+TFAQ+P1+Q

但我不明白它在说什么。

您需要定义 FL_DLL 预处理器符号以获得嵌入 FLTK 头文件中的正确链接命令。

这意味着什么?我需要在 include 之前#define 某些内容吗?这句话如何翻译成代码?

如果我没有走上正确的道路,请告诉我。任何帮助表示赞赏。

编辑:

另外,我将 PATH 变量设置为 C:\MinGW/bin/。我尝试在那里设置文件,但这也不起作用。我知道我必须对这些 .dsp 文件做一些事情,但不知道做什么。

I am trying to compile a project with MinGW that uses the fltk library. Whenever it gets to the file using fltk, it tells me "cannot find -lfltk".

I know it comes down to getting the .dll for the library and where I put it, but I am having a lot of trouble figuring this out. I found two files in the fltk folder named fltk.lib.dsp and fltkdll.dsp. I tried to just put these files in my system32 folder, but that did not work. I'm guessing thats because these are both VC++ 6 project files and not actually .dll and .lib files. I found this article:

http://www.fltk.org/articles.php?L372+I0+TFAQ+P1+Q

but I don't understand what it is saying.

you will need to define the FL_DLL preprocessor symbol to get the correct linkage commands embedded within the FLTK header files.

What does that mean? Do I need to #define something before my includes? How does this sentence translate into code?

If I am not on the right track please tell me. Any help is appreciated.

edit:

Also, I have my PATH variable set to C:\MinGW/bin/. I tried setting the files in there, but that did not work either. I know I have to do something to these .dsp files, but don't know what.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一袭白衣梦中忆 2024-12-05 20:26:12

该错误信息与dll无关。
它实际上表示找不到名为“libfltk.a”的链接器库。

所以你应该首先拥有该库来编译你的程序。

the error message is not related to dll.
it actually says that the linker library named 'libfltk.a' is not found.

so you should have that library first for compiling your program.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文