[CBRD-25560] build(cmake): detect ccache and use it as launcher if exists #5460
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
http://jira.cubrid.org/browse/CBRD-25560
ccache 를 통한 빌드 속도 향상
CMake 설정 파일에 ccache를 사용하는 코드를 추가하여 빌드 속도를 크게 향상시킬 수 있습니다.
해당 코드를 프로젝트의 CMake 설정에 추가하여, ccache가 설치된 경우 이를 컴파일러 실행기로 설정하도록 했습니다. 이로 인해 반복적인 빌드 시간 단축이 가능해졌습니다.
build 파일을 지우고 처음부터 다시 빌드할 경우, 개발 서버 기준 2분 내외의 빌드 시간이 소모됩니다. 그러나 ccache를 사용할 경우, build 파일을 지우고 처음부터 다시 빌드하더라도 40초 내외로 빌드 시간을 줄일 수 있습니다.
CMakeLists.txt에서 자동으로 ccache 설치 여부를 감지하여 자동으로 사용하게 하는 방식입니다.
ccache가 설치되어있지 않은 개발자는 이 패치에 영향을 받지 않습니다.
테스트 환경:
개발 서버 Centos7 g++-8
개인 장비 WSL Ubuntu 22.04 g++-11
개인 장비 Arch Linux g++-13