mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-21 09:14:47 +08:00
20 lines
419 B
C++
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
|