svn commit: r568456 - in head/lang/intel-compute-runtime: . files
Jan Beich
jbeich at FreeBSD.org
Mon Mar 15 13:32:06 UTC 2021
Author: jbeich
Date: Mon Mar 15 13:32:04 2021
New Revision: 568456
URL: https://svnweb.freebsd.org/changeset/ports/568456
Log:
lang/intel-compute-runtime: update to 21.10.19208
Changes: https://github.com/intel/compute-runtime/compare/21.09.19150...21.10.19208
Reported by: GitHub (watch releases)
Modified:
head/lang/intel-compute-runtime/Makefile (contents, props changed)
head/lang/intel-compute-runtime/distinfo (contents, props changed)
head/lang/intel-compute-runtime/files/patch-rtld (contents, props changed)
Modified: head/lang/intel-compute-runtime/Makefile
==============================================================================
--- head/lang/intel-compute-runtime/Makefile Mon Mar 15 13:31:49 2021 (r568455)
+++ head/lang/intel-compute-runtime/Makefile Mon Mar 15 13:32:04 2021 (r568456)
@@ -1,8 +1,7 @@
# $FreeBSD$
PORTNAME= compute-runtime
-DISTVERSION= 21.09.19150
-PORTREVISION= 1
+DISTVERSION= 21.10.19208
CATEGORIES= lang
PKGNAMEPREFIX= intel-
Modified: head/lang/intel-compute-runtime/distinfo
==============================================================================
--- head/lang/intel-compute-runtime/distinfo Mon Mar 15 13:31:49 2021 (r568455)
+++ head/lang/intel-compute-runtime/distinfo Mon Mar 15 13:32:04 2021 (r568456)
@@ -1,6 +1,6 @@
-TIMESTAMP = 1614027337
-SHA256 (intel-compute-runtime-21.09.19150_GH0.tar.gz) = c38172bc7460cc3ec104ef29a655788cdd8329a62e894ee1ec116e78ebc451a5
-SIZE (intel-compute-runtime-21.09.19150_GH0.tar.gz) = 3780882
+TIMESTAMP = 1614619045
+SHA256 (intel-compute-runtime-21.10.19208_GH0.tar.gz) = 9950fb77c9ce56711d1d4d4554d75406ce53935f954e573d492e2f75c85e7bcf
+SIZE (intel-compute-runtime-21.10.19208_GH0.tar.gz) = 3791111
SHA256 (2a423820aaa4.patch) = dd034e856e75d70bc6b63204aa2c67530a3212d111b67a703e4cbeb84e61685b
SIZE (2a423820aaa4.patch) = 947
SHA256 (76666662c479.patch) = 9513b57fb156aa8394ba9a6311ae055c8bf7f5202ee77e3c90987448836dc26a
Modified: head/lang/intel-compute-runtime/files/patch-rtld
==============================================================================
--- head/lang/intel-compute-runtime/files/patch-rtld Mon Mar 15 13:31:49 2021 (r568455)
+++ head/lang/intel-compute-runtime/files/patch-rtld Mon Mar 15 13:32:04 2021 (r568456)
@@ -1,18 +1,32 @@
RTLD_DEEPBIND isn't available on non-Linux
-core/os_interface/linux/os_library_linux.cpp: In constructor 'NEO::Linux::OsLibrary::OsLibrary(const string&)':
-core/os_interface/linux/os_library_linux.cpp:35:49: error: 'RTLD_DEEPBIND' was not declared in this scope
- 35 | constexpr auto dlopenFlag = RTLD_LAZY | RTLD_DEEPBIND;
- | ^~~~~~~~~~~~~
+shared/source/os_interface/linux/os_library_helper.cpp:17:24: error: use of undeclared identifier 'RTLD_DEEPBIND'
+ dlopenFlag &= ~RTLD_DEEPBIND;
+ ^
+shared/source/os_interface/linux/os_library_linux.cpp:41:39: error: use of undeclared identifier 'RTLD_DEEPBIND'
+ auto dlopenFlag = RTLD_LAZY | RTLD_DEEPBIND;
+ ^
---- shared/source/os_interface/linux/os_library_linux.cpp.orig 2020-02-28 16:16:42 UTC
+--- shared/source/os_interface/linux/os_library_helper.cpp.orig 2021-03-01 17:17:25 UTC
++++ shared/source/os_interface/linux/os_library_helper.cpp
+@@ -14,7 +14,9 @@ namespace NEO {
+ namespace Linux {
+ void adjustLibraryFlags(int &dlopenFlag) {
+ if (DebugManager.flags.DisableDeepBind.get()) {
++#ifdef RTLD_DEEPBIND
+ dlopenFlag &= ~RTLD_DEEPBIND;
++#endif
+ }
+ }
+ } // namespace Linux
+--- shared/source/os_interface/linux/os_library_linux.cpp.orig 2021-03-01 17:17:25 UTC
+++ shared/source/os_interface/linux/os_library_linux.cpp
-@@ -29,7 +29,7 @@ OsLibrary::OsLibrary(const std::string &name) {
+@@ -35,7 +35,7 @@ OsLibrary::OsLibrary(const std::string &name) {
if (name.empty()) {
- this->handle = dlopen(0, RTLD_LAZY);
+ this->handle = SysCalls::dlopen(0, RTLD_LAZY);
} else {
-#ifdef SANITIZER_BUILD
+#if defined(SANITIZER_BUILD) || !defined(RTLD_DEEPBIND)
- constexpr auto dlopenFlag = RTLD_LAZY;
+ auto dlopenFlag = RTLD_LAZY;
#else
- constexpr auto dlopenFlag = RTLD_LAZY | RTLD_DEEPBIND;
+ auto dlopenFlag = RTLD_LAZY | RTLD_DEEPBIND;
More information about the svn-ports-all
mailing list