-
Notifications
You must be signed in to change notification settings - Fork 825
New issue
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
Fix support for Ninja and add Ninja build in Simple CI #5236
Conversation
…mv-default-third-party-dir-into-build-dir-1
@@ -44,7 +44,7 @@ ExternalProject_Add(grpc | |||
URL_HASH MD5=${GRPC_URL_HASH} | |||
UPDATE_COMMAND "" | |||
BUILD_IN_SOURCE 1 | |||
BUILD_COMMAND make -j${PROC_NUM} grpc grpc_unsecure grpc++_unsecure | |||
BUILD_COMMAND ${CMAKE_COMMAND} --build . -j ${PROC_NUM} -t grpc grpc_unsecure grpc++_unsecure |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
要不要顺便把 lz4.cmake、openssl.cmake、nccl.cmake 也改掉
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
要不要顺便把 lz4.cmake、openssl.cmake、nccl.cmake 也改掉
好主意
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
note
没有成功,因为那几个项目是make项目,cmake --build 如果调用的是 ninja,就会失败
…into support_ninja
No description provided.