Skip to content
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

Merged
merged 8 commits into from
Sep 26, 2022
Merged

Conversation

tkonolige
Copy link
Contributor

Previously ccache was disabled because of possible issues with hexagon. Re-enabling it to provide a best effort attempt at using it.

@driazati @cconvey

Previously ccache was disabled because of possible issues with hexagon.
Re-enabling it to provide a best effort attempt at using it.
Copy link
Contributor

@areusch areusch left a 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.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: spaces after comment #

Copy link
Contributor Author

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")
Copy link
Contributor

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})
Copy link
Contributor

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?

Copy link
Contributor Author

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.

Copy link
Member

@driazati driazati left a 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

@KOLANICH
Copy link

BTW, why not to use an external module?

@tkonolige
Copy link
Contributor Author

@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)
Copy link
Member

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?

Suggested change
if(DEFINED CXX_COMPILER_LAUNCHER OR DEFINED C_COMPILER_LAUNCHER)
if(DEFINED CMAKE_CXX_COMPILER_LAUNCHER OR DEFINED CMAKE_C_COMPILER_LAUNCHER)

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@areusch areusch merged commit b6a660b into apache:main Sep 26, 2022
xinetzone pushed a commit to daobook/tvm that referenced this pull request Nov 25, 2022
* [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]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants