提交 3d92ac6e 编写于 作者: M mindspore-ci-bot 提交者: Gitee

!380 [MS][Windows]build.bat support input -j value

Merge pull request !380 from chenjianping/build-bat-support-input
......@@ -20,7 +20,11 @@ IF NOT %errorlevel% == 0 (
goto run_fail
)
cmake --build . --target all -- -j6
IF "%1%" == "" (
cmake --build . --target all -- -j6
) ELSE (
cmake --build . --target all -- -j%1%
)
IF NOT %errorlevel% == 0 (
goto run_fail
)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册