如何在 MinGW 中使用预编译静态库?

How to use use precompiled static libraries with MinGW?

我正在尝试使用 MinGW 将 Linux 项目编译成 Windows。我已经使用 Cygwin 成功地做到了这一点,但我更愿意使用 MinGW,所以我的程序最终不会有几十个不必要的依赖项。

不幸的是,我 运行 遇到一个问题,即编译器抱怨对文件的未识别引用。我正在为 Windows 使用 FFTW3 的预编译版本,并使用 dlltool 创建 .a 文件以 link 它到 MinGW。我已经为编译器指定了libpath,但不幸的是,我仍然遇到错误。

这是我的输出:

make all 
gcc -I../Include -L..\Lib  -Wall -O3  -o lvdoenc lvdoenc.o lvdomain.o  -I../Include -L..\Lib -m32
lvdoenc.o:lvdoenc.c:(.text+0x29b): undefined reference to <code>_imp__fftw_execute'
lvdoenc.o:lvdoenc.c:(.text+0x608): undefined reference to_imp__fftw_malloc'
lvdoenc.o:lvdoenc.c:(.text+0x647): undefined reference to _imp__fftw_plan_r2r_2d'
lvdoenc.o:lvdoenc.c:(.text+0x8d1): undefined reference to_imp__fftw_free'
lvdoenc.o:lvdoenc.c:(.text+0x8e5): undefined reference to _imp__fftw_destroy_plan'
c:/mingw/bin/../lib/gcc/mingw32/4.8.1/../../../../mingw32/bin/ld.exe: lvdoenc.o: bad reloc address 0x20 in section.eh_frame'
c:/mingw/bin/../lib/gcc/mingw32/4.8.1/../../../../mingw32/bin/ld.exe: final link failed: Invalid operation
collect2.exe: error: ld returned 1 exit status
make: *** [lvdoenc] Error 1

13:23:28 Build Finished (took 217ms)

我遇到的所有解决方案都涉及使用 gcc 编译为 link fftw3 (-lfftw3),但这在 MinGW 中不起作用。我在 Cygwin 中遇到了同样的问题,但是使用 -lfftw3 作为编译器选项的解决方案确实有效。我什至指定了 lib 路径的位置。包含路径工作正常,但在 libpath 中找不到库。

如有任何帮助,我们将不胜感激。

我从 here 下载了 DLL。

然后我完成了以下操作(参见 http://www.mingw.org/wiki/createimportlibraries):

dlltool -d libfftw3-3.def -l libfftw3.a

/* x.c */
int main() { fftw_malloc(); }

gcc x.c -L.\. -lfftw3