-
Notifications
You must be signed in to change notification settings - Fork 159
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
[infra/onert] Disable ACL build as default #14453
Conversation
This commit disables ACL build as default. It will be enabled when target is aarch32/64 and OS is android or linux. ONE-DCO-1.0-Signed-off-by: Hyeongseok Oh <[email protected]>
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.
LGTM
@@ -1,4 +1,7 @@ | |||
# aarch64 android cmake options | |||
# | |||
option(BUILD_ARMCOMPUTE "Build ARM Compute from the downloaded source" ON) | |||
option(DOWNLOAD_ARMCOMPUTE "Build ARM Compute from the downloaded source" ON) |
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.
It is DOWNLOAD_ARMCOMPUTE
, but the description seems to be Build ...
. It would be better to change to Download..
option(DOWNLOAD_ARMCOMPUTE "Build ARM Compute from the downloaded source" ON) | |
option(DOWNLOAD_ARMCOMPUTE "Download ARM Compute source" ON) |
@ys44kim @ragmani @chunseoklee I updated help message. PTAL |
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.
LGTM
This commit disables ACL build as default.
It will be enabled when target is aarch32/64 and OS is android or linux.
ONE-DCO-1.0-Signed-off-by: Hyeongseok Oh [email protected]