我在Windows上安装FFTW库时遇到问题。我正在按照以下链接进行操作:

http://www.fftw.org/fftw3_doc/Installation-on-non_002dUnix-systems.html#Installation-on-non_002dUnix-systems

1)
下载minGW 64位之后,我想知道如何访问“内核”和“ simd-support”目录来按建议编译c文件。

2)
由于我不熟悉此库,是否有使用命令行安装库的更好方法?

就像在此链接中所写,在“在minGW下构建FFTW3”标题下:

http://www.fftw.org/install/windows.html

当我运行以下命令时:

./configure --with-our-malloc16 --with-windows-f77-mangling --enable-shared --disable-static --enable-threads --with-combined-threads --enable-portable-binary --enable-sse2 --with-incoming-stack-boundary=2


我得到:

'.' is not recognized as an internal or external command


任何帮助将非常感激

最佳答案

您正在cmd / power shell中运行配置脚本。您必须在MinGW Shell中运行configure命令。
http://www.fftw.org/install/windows.html具有预构建的库。它们为32位和64位应用程序提供了维护良好且经过优化的版本。

关于c - 使用MinGW 64位在非Unix系统上安装FFTW库,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/50083072/

10-11 06:45