revert adding ccache tool (#2153)

This commit is contained in:
summermorningdream 2024-05-18 17:33:07 +08:00 committed by GitHub
parent 53b59a8a22
commit 2a78c543a1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -72,12 +72,13 @@ set(HACKRF_CPLD_XSVF_PATH ${HACKRF_PATH}/firmware/cpld/sgpio_if/${HACKRF_CPLD_XS
set(HACKRF_FIRMWARE_DFU_IMAGE ${hackrf_usb_BINARY_DIR}/${HACKRF_FIRMWARE_DFU_FILENAME}) set(HACKRF_FIRMWARE_DFU_IMAGE ${hackrf_usb_BINARY_DIR}/${HACKRF_FIRMWARE_DFU_FILENAME})
set(HACKRF_FIRMWARE_BIN_IMAGE ${hackrf_usb_BINARY_DIR}/${HACKRF_FIRMWARE_BIN_FILENAME}) set(HACKRF_FIRMWARE_BIN_IMAGE ${hackrf_usb_BINARY_DIR}/${HACKRF_FIRMWARE_BIN_FILENAME})
find_program(CCACHE "ccache") # this seems causing some issues (ref. in discord discussions), so temporarily disabled, until figure out the pros and cons and bugs of this tool.
if(CCACHE) #find_program(CCACHE "ccache")
set(CMAKE_C_COMPILER_LAUNCHER ${CCACHE}) #if(CCACHE)
set(CMAKE_CXX_COMPILER_LAUNCHER ${CCACHE}) # set(CMAKE_C_COMPILER_LAUNCHER ${CCACHE})
set(ENV{CCACHE_SLOPPINESS} pch_defines,time_macros) # set(CMAKE_CXX_COMPILER_LAUNCHER ${CCACHE})
endif(CCACHE) # set(ENV{CCACHE_SLOPPINESS} pch_defines,time_macros)
#endif(CCACHE)
enable_testing() enable_testing()
add_subdirectory(firmware) add_subdirectory(firmware)