Skip to content
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.

Commit

Permalink
Removed "RULE_LAUNCH_LINK ccache" as ccache does not accelerate linking
Browse files Browse the repository at this point in the history
  • Loading branch information
kj4ezj committed Jun 19, 2019
1 parent 7d913bc commit b99cc69
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion CMakeLists.txt
Expand Up @@ -11,7 +11,6 @@ else()
if (CCACHE_FOUND)
message(STATUS "Using ccache")
set_property(GLOBAL PROPERTY RULE_LAUNCH_COMPILE ccache)
set_property(GLOBAL PROPERTY RULE_LAUNCH_LINK ccache)
endif()
endif()

Expand Down
1 change: 0 additions & 1 deletion libraries/CMakeLists.txt
Expand Up @@ -4,7 +4,6 @@ find_program(CCACHE_FOUND ccache)
if (CCACHE_FOUND)
message(STATUS "Using ccache")
set_property(GLOBAL PROPERTY RULE_LAUNCH_COMPILE ccache)
set_property(GLOBAL PROPERTY RULE_LAUNCH_LINK ccache)
endif()

list(APPEND CMAKE_MODULE_PATH ${EOSIO_CDT_BIN})
Expand Down
1 change: 0 additions & 1 deletion tests/CMakeLists.txt
Expand Up @@ -8,7 +8,6 @@ else()
if (CCACHE_FOUND)
message(STATUS "Using ccache")
set_property(GLOBAL PROPERTY RULE_LAUNCH_COMPILE ccache)
set_property(GLOBAL PROPERTY RULE_LAUNCH_LINK ccache)
endif()
endif()

Expand Down
1 change: 0 additions & 1 deletion tools/CMakeLists.txt
Expand Up @@ -13,7 +13,6 @@ else()
if (CCACHE_FOUND)
message(STATUS "Using ccache")
set_property(GLOBAL PROPERTY RULE_LAUNCH_COMPILE ccache)
set_property(GLOBAL PROPERTY RULE_LAUNCH_LINK ccache)
endif()
endif()

Expand Down

0 comments on commit b99cc69

Please sign in to comment.