Files
compute-runtime/shared/source/compiler_interface/windows/os_compiler_cache_helper.cpp
Kacper Kasper 991febcdf4 fix: extend cache hash with compiler commit sha, lib size and mtime
Related-To: NEO-4262

Signed-off-by: Kacper Kasper <kacper.k.kasper@intel.com>
2023-08-22 15:28:57 +02:00

20 lines
419 B
C++

/*
* Copyright (C) 2023 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include "shared/source/compiler_interface/os_compiler_cache_helper.h"
namespace NEO {
bool checkDefaultCacheDirSettings(std::string &cacheDir, SettingsReader *reader) {
return false;
}
time_t getFileModificationTime(std::string &path) {
return 0;
}
size_t getFileSize(std::string &path) {
return 0;
}
} // namespace NEO