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>
This commit is contained in:
Kacper Kasper
2023-08-21 12:00:06 +00:00
committed by Compute-Runtime-Automation
parent d49190f4ae
commit 991febcdf4
35 changed files with 240 additions and 26 deletions

View File

@@ -21,6 +21,7 @@
#include <dlfcn.h>
#include <fcntl.h>
#include <iostream>
#include <link.h>
#include <poll.h>
#include <string.h>
#include <string_view>
@@ -157,6 +158,13 @@ void *dlopen(const char *filename, int flag) {
return ::dlopen(filename, flag);
}
int dlinfo(void *handle, int request, void *info) {
if (request == RTLD_DI_LINKMAP) {
return ::dlinfo(handle, request, info);
}
return -1;
}
int ioctl(int fileDescriptor, unsigned long int request, void *arg) {
if (sysCallsIoctl != nullptr) {