We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55e4778 commit 8c7c04eCopy full SHA for 8c7c04e
ggml/src/CMakeLists.txt
@@ -1068,7 +1068,11 @@ if (GGML_CCACHE)
1068
1069
if (GGML_CCACHE_FOUND)
1070
# TODO: should not be set globally
1071
- set_property(GLOBAL PROPERTY RULE_LAUNCH_COMPILE ccache)
+ if (GGML_SYCL)
1072
+ set_property(GLOBAL PROPERTY RULE_LAUNCH_COMPILE "ccache compiler_type=clang-cl")
1073
+ else ()
1074
+ set_property(GLOBAL PROPERTY RULE_LAUNCH_COMPILE ccache)
1075
+ endif ()
1076
set(ENV{CCACHE_SLOPPINESS} time_macros)
1077
message(STATUS "ccache found, compilation results will be cached. Disable with GGML_CCACHE=OFF.")
1078
else()
0 commit comments