如何从命令行启用 SSE2
How do I enable SSE2 from the command line
我正在编译 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
你忘记了-D。所以你不得不说,cmake -DUSE_SSE2_INSTRUCTIONS=ON
我正在编译 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
你忘记了-D。所以你不得不说,cmake -DUSE_SSE2_INSTRUCTIONS=ON