0

我正在编译 Dlib 的 Python 示例。

编译脚本是:

mkdir build
cd build
cmake ../../tools/python 
cmake --build . --config Release --target install  
cd ..

如何从命令行启用 SSE2?我尝试添加参数 -USE_SSE2_INSTRUCTIONS=ON 但出现未知参数错误。

从 Cmake 缓存文件:

//Compile your program with SSE2 instructions
USE_SSE2_INSTRUCTIONS:BOOL=OFF
4

1 回答 1

0

你忘记了-D。所以你不得不说, cmake -DUSE_SSE2_INSTRUCTIONS=ON

于 2015-06-28T17:51:34.180 回答