我正在编译 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