mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-05 09:09:04 +08:00
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:
committed by
Compute-Runtime-Automation
parent
d49190f4ae
commit
991febcdf4
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user