Link FLTK 与 g++

Link FLTK with g++

为了试用FLTK,我有以下文件结构:

project
|--main.cc
|--include
|  |--FL
|  |  |--all FLTK header files
|--lib
|  |--libfltk.a
|  |--other fltk libraries

在main.cc中包含以下内容:

#include <FL/Fl.H>
#include <FL/Fl_Box.H>
#include <FL/Fl_Window.H>

int main()
{
    Fl_Window window(200, 200, "Window title");
    Fl_Box box(0,0,200,200,"Hello, World!");
    window.show();
    return Fl::run();
}

现在当我运行:

g++ -std=c++11 -c -o main.o main.cc -I include
g++ -std=c++11 -o main.exe main.o -L lib -lfltk

第二次调用 g++ 后出现一大堆错误:

lib/libfltk.a(Fl.o):Fl.cxx:(.text$_ZL13image_to_iconPK12Fl_RGB_Imagebii+0xf3): undefined reference to `CreateDIBSection@24'
lib/libfltk.a(Fl.o):Fl.cxx:(.text$_ZL13image_to_iconPK12Fl_RGB_Imagebii+0x1cf): undefined reference to `DeleteObject@4'
lib/libfltk.a(Fl.o):Fl.cxx:(.text$_ZL13image_to_iconPK12Fl_RGB_Imagebii+0x258): undefined reference to `CreateBitmap@20'
lib/libfltk.a(Fl.o):Fl.cxx:(.text$_ZL13image_to_iconPK12Fl_RGB_Imagebii+0x2a6): undefined reference to `DeleteObject@4'
lib/libfltk.a(Fl.o):Fl.cxx:(.text$_ZL13image_to_iconPK12Fl_RGB_Imagebii+0x2b1): undefined reference to `DeleteObject@4'
lib/libfltk.a(Fl.o):Fl.cxx:(.text$__tcf_1+0x5b): undefined reference to `OleUninitialize@0'
lib/libfltk.a(Fl.o):Fl.cxx:(.text$__tcf_1+0x83): undefined reference to `RestoreDC@8'
etc ...

当我尝试 link 其他 FLTK 库时,结果是一样的。有人可以帮我吗?

我使用 Windows 的 gcc 和 MingW。

解决这类问题需要借助fltk-config脚本。因此,向编译器添加行 fltk-config --ldflags 以避免链接器错误就足够了。请务必在该命令周围使用“`”符号,因为这是脚本并且应该执行它。