diff options
author | Jan Beich <jbeich@FreeBSD.org> | 2019-12-07 17:31:44 +0000 |
---|---|---|
committer | Jan Beich <jbeich@FreeBSD.org> | 2019-12-07 17:31:44 +0000 |
commit | e1a4a7c0e17237094522b9a0ef9e5a77d7c158aa (patch) | |
tree | 56541d432cd5abb5da9316ac4acef495ab059fd6 /lang/compute-runtime/files/patch-clock_gettime | |
parent | - Update to 1.4.1 (diff) |
devel/compute-runtime: add new port
Tested by: clpeak, waifu2x-converter-cpp via drm-v4.9 on Skylake
The Intel(R) Graphics Compute Runtime for OpenCL(TM) is an open source
project to converge Intel's development efforts on OpenCL(TM) compute
stacks supporting the GEN graphics hardware architecture.
https://01.org/compute-runtime
Notes
Notes:
svn path=/head/; revision=519222
Diffstat (limited to 'lang/compute-runtime/files/patch-clock_gettime')
-rw-r--r-- | lang/compute-runtime/files/patch-clock_gettime | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/lang/compute-runtime/files/patch-clock_gettime b/lang/compute-runtime/files/patch-clock_gettime new file mode 100644 index 000000000000..7a6609f709b7 --- /dev/null +++ b/lang/compute-runtime/files/patch-clock_gettime @@ -0,0 +1,24 @@ +CLOCK_MONOTONIC_RAW doesn't exist on non-Linux systems. + +runtime/os_interface/linux/os_time_linux.cpp:61:21: error: + use of undeclared identifier 'CLOCK_MONOTONIC_RAW' + if (getTimeFunc(CLOCK_MONOTONIC_RAW, &ts)) { + ^ +runtime/os_interface/linux/os_time_linux.cpp:138:24: error: + use of undeclared identifier 'CLOCK_MONOTONIC_RAW' + if (resolutionFunc(CLOCK_MONOTONIC_RAW, &ts)) { + ^ + +--- runtime/os_interface/linux/os_time_linux.cpp.orig 2019-11-22 15:41:47 UTC ++++ runtime/os_interface/linux/os_time_linux.cpp +@@ -14,6 +14,10 @@ + + #include <time.h> + ++#ifndef CLOCK_MONOTONIC_RAW ++#define CLOCK_MONOTONIC_RAW CLOCK_MONOTONIC ++#endif ++ + namespace NEO { + + OSTimeLinux::OSTimeLinux(OSInterface *osInterface) { |