-
Notifications
You must be signed in to change notification settings - Fork 3.6k
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
[BUILD] Re-enable ccache by default #12839
Conversation
Previously ccache was disabled because of possible issues with hexagon. Re-enabling it to provide a best effort attempt at using it.
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.
thanks @tkonolige
CMakeLists.txt
Outdated
@@ -460,6 +461,42 @@ if(USE_PIPELINE_EXECUTOR) | |||
list(APPEND RUNTIME_SRCS ${RUNTIME_PIPELINE_SRCS}) | |||
endif(USE_PIPELINE_EXECUTOR) | |||
|
|||
#Caches the build. |
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.
nit: spaces after comment #
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.
done
CMakeLists.txt
Outdated
|
||
if(USE_CCACHE) # True for AUTO, ON, /path/to/ccache | ||
if(DEFINED CXX_COMPILER_LAUNCHER OR DEFINED C_COMPILER_LAUNCHER) | ||
message(STATUS "CXX_COMPILER_LAUNCHER or C_COMPILER_LAUNCHER already defined, not using ccache") |
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.
should this be ERROR if USE_CCACHE is on?
CMakeLists.txt
Outdated
else() | ||
message(STATUS "Didn't find the path to CCACHE, disabling ccache") | ||
endif(CCACHE_FOUND) | ||
elseif("${USE_CCACHE}" MATCHES ${IS_TRUE_PATTERN}) |
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.
possible to collapse this with the previous if case?
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.
I think the logic is clearer this way.
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.
a couple more nits but looks fine once those are addressed
BTW, why not to use an external module? |
@KOLANICH we don't want to add any unnecessary dependencies. |
# under the License. | ||
|
||
if(USE_CCACHE) # True for AUTO, ON, /path/to/ccache | ||
if(DEFINED CXX_COMPILER_LAUNCHER OR DEFINED C_COMPILER_LAUNCHER) |
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.
also have no idea how cmake works but aren't these vars supposed to have the CMAKE_
prefix everywhere?
if(DEFINED CXX_COMPILER_LAUNCHER OR DEFINED C_COMPILER_LAUNCHER) | |
if(DEFINED CMAKE_CXX_COMPILER_LAUNCHER OR DEFINED CMAKE_C_COMPILER_LAUNCHER) |
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.
https://cmake.org/cmake/help/latest/prop_tgt/LANG_COMPILER_LAUNCHER.html. It appears to be CXX_COMPILER_LAUNCHER
Co-authored-by: driazati <[email protected]>
* [BUILD] Re-enable ccache by default Previously ccache was disabled because of possible issues with hexagon. Re-enabling it to provide a best effort attempt at using it. * set tvm_option, set variables correctly * clean up comment, fatal error if launcher is defined with USE_CCACHE=ON * add ccache to libinfo * more libinfo * add launcher to summary, move ccache to seperate file * Update cmake/utils/Summary.cmake Co-authored-by: driazati <[email protected]> * correct name for Summary.cmake Co-authored-by: driazati <[email protected]>
Previously ccache was disabled because of possible issues with hexagon. Re-enabling it to provide a best effort attempt at using it.
@driazati @cconvey