我正在尝试将LZ4 压缩库与 Visual Studio 2013 中的 C++ 项目一起使用。我需要为其构建 .dll 文件,以便将其链接到项目中。我正在尝试使用 mingw 使用 make 文件构建它,但这会引发令人不快的错误。导航到存储库的基本目录并运行mingw32-make.exe
会给出以下错误输出:
process_begin: CreateProcess(NULL, uname, ...) failed.
The filename, directory name, or volume label syntax is incorrect.
Makefile:72: recipe for target 'lz4programs' failed
mingw32-make: *** [lz4programs] Error 1
我对在 Windows 上编译 make 文件并不太熟悉,并且很难找出导致错误的原因。此外,考虑到这个压缩库的流行程度,我觉得有些奇怪,我在网上找不到任何关于为 Windows 编译它的信息。任何帮助编译这个东西都将不胜感激。