We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
运行 lite\tools\build_windows.bat 根据提示输入正确的visual studio安装路径后脚本直接退出没有往下执行
lite\tools\build_windows.bat
E:\dev\paddle-lite>lite\tools\build_windows.bat "------------------------------------------------------------------------------------------------------|" "| WITH_LOG=ON |" "| BUILD_EXTRA=ON |" "| WITH_PYTHON=ON |" "| LITE_WITH_PROFILE=OFF |" "| LITE_WITH_PRECISION_PROFILE=OFF |" "| WITH_TESTING=OFF |" "| WITH_STRIP=OFF |" "| OPTMODEL_DIR="" |" "| BUILD_PLATFORM=x64 |" "| WITH_STATIC_MKL=OFF |" "| MSVC_STATIC_CRT=ON |" "| WITH_OPENCL=OFF |" "| WITH_AVX=ON |" "| WITH_KUNLUNXIN_XPU=OFF |" "| KUNLUNXIN_XPU_SDK_ROOT="" |" "------------------------------------------------------------------------------------------------------|" Please input the path of visual studio command Prompt, such as C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat =======>D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Auxiliary\Build\vcvarsall.bat E:\dev\paddle-lite>
解决办法: 将 build_windows.bat 文件第116行
build_windows.bat
goto set_vcvarsall_dir
修改为如下方式:
call:set_vcvarsall_dir
即可解决问题
The text was updated successfully, but these errors were encountered:
好的,感谢反馈
Sorry, something went wrong.
No branches or pull requests
运行
lite\tools\build_windows.bat
根据提示输入正确的visual studio安装路径后脚本直接退出没有往下执行
解决办法:
将
build_windows.bat
文件第116行修改为如下方式:
即可解决问题
The text was updated successfully, but these errors were encountered: