2023-05-09 00:39:55 +02:00
|
|
|
/*
|
|
|
|
|
* Copyright (C) 2023 Intel Corporation
|
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "shared/source/compiler_interface/os_compiler_cache_helper.h"
|
|
|
|
|
|
|
|
|
|
namespace NEO {
|
2023-08-31 10:22:58 +00:00
|
|
|
|
|
|
|
|
std::string makePath(const std::string &lhs, const std::string &rhs) {
|
|
|
|
|
return lhs + rhs;
|
|
|
|
|
}
|
2023-05-09 00:39:55 +02:00
|
|
|
bool checkDefaultCacheDirSettings(std::string &cacheDir, SettingsReader *reader) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2023-08-28 19:09:29 +00:00
|
|
|
time_t getFileModificationTime(const std::string &path) {
|
2023-08-21 12:00:06 +00:00
|
|
|
return 0;
|
|
|
|
|
}
|
2023-08-28 19:09:29 +00:00
|
|
|
size_t getFileSize(const std::string &path) {
|
2023-08-21 12:00:06 +00:00
|
|
|
return 0;
|
|
|
|
|
}
|
2023-05-09 00:39:55 +02:00
|
|
|
} // namespace NEO
|