在 Windows 上编译 LZ4 压缩库
Compiling LZ4 compression library on Windows
我正在尝试将 LZ4 compression library 与 Visual Studio 2013 中的 C++ 项目一起使用。我需要为其构建 .dll 文件,以便我可以 link项目。我正在尝试使用 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 编译它的信息。任何帮助编译这个东西的帮助将不胜感激。
我能够使用 CMake 和 cmake_unofficial 文件夹中的 CMakeLists.txt 文件来编译库和 lz4 可执行文件。
解决方案是编译库的静态版本。如果你想要一个dll版本,如果静态库不够用,你应该可以尝试Visual Studio设置来获取dll。
我正在尝试将 LZ4 compression library 与 Visual Studio 2013 中的 C++ 项目一起使用。我需要为其构建 .dll 文件,以便我可以 link项目。我正在尝试使用 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 编译它的信息。任何帮助编译这个东西的帮助将不胜感激。
我能够使用 CMake 和 cmake_unofficial 文件夹中的 CMakeLists.txt 文件来编译库和 lz4 可执行文件。
解决方案是编译库的静态版本。如果你想要一个dll版本,如果静态库不够用,你应该可以尝试Visual Studio设置来获取dll。