mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-22 10:17:01 +08:00
This reverts commit eeb8a5e1fb.
Signed-off-by: Compute-Runtime-Validation <compute-runtime-validation@intel.com>
24 lines
527 B
C++
24 lines
527 B
C++
/*
|
|
* Copyright (C) 2023 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/compiler_interface/os_compiler_cache_helper.h"
|
|
|
|
namespace NEO {
|
|
|
|
std::string makePath(const std::string &lhs, const std::string &rhs) {
|
|
return lhs + rhs;
|
|
}
|
|
bool checkDefaultCacheDirSettings(std::string &cacheDir, SettingsReader *reader) {
|
|
return false;
|
|
}
|
|
time_t getFileModificationTime(const std::string &path) {
|
|
return 0;
|
|
}
|
|
size_t getFileSize(const std::string &path) {
|
|
return 0;
|
|
}
|
|
} // namespace NEO
|