Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
aports
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
alpine
aports
Commits
89dfd9aa
Commit
89dfd9aa
authored
4 years ago
by
Dennis Krupenik
Committed by
Leo
4 years ago
Browse files
Options
Downloads
Patches
Plain Diff
testing/intel-graphics-compiler: upgrade to 1.0.5435
parent
c7ce793e
Loading
Loading
1 merge request
!14607
testing/intel-graphics-compiler: upgrade to 1.0.5435
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
testing/intel-graphics-compiler/APKBUILD
+3
-3
3 additions, 3 deletions
testing/intel-graphics-compiler/APKBUILD
testing/intel-graphics-compiler/remove-rtld-deepbind.patch
+5
-4
5 additions, 4 deletions
testing/intel-graphics-compiler/remove-rtld-deepbind.patch
with
8 additions
and
7 deletions
testing/intel-graphics-compiler/APKBUILD
+
3
−
3
View file @
89dfd9aa
# Contributor: Dennis Krupenik <dennis@krupenik.com>
# Maintainer: Dennis Krupenik <dennis@krupenik.com>
pkgname
=
intel-graphics-compiler
pkgver
=
1.0.535
3
pkgver
=
1.0.5
4
35
pkgrel
=
0
pkgdesc
=
"Intel® Graphics Compiler for OpenCL™"
url
=
"https://github.com/intel/intel-graphics-compiler"
...
...
@@ -44,7 +44,7 @@ package() {
make
-C
build
DESTDIR
=
"
$pkgdir
"
install
}
sha512sums
=
"
e9f20e2261c5cb79d365d5d8257e8f4830b2364962c48413cc80154469db34c1c844ae5d576cbce2e3c5e5cbe22c7c3710ebd0a7fe7208e5412e81ce20077c80
igc-1.0.535
3
.tar.gz
sha512sums
=
"
539aca07509d2bfb5f43fc15c0f8c4af5b500d7bd1c867952c50212d54c5b64f03b985d4d787e32ffa75e8ccb89390c169b5404033537ce3c1fcc36d472ac60f
igc-1.0.5
4
35.tar.gz
8f27fd371fd760734c37f650b3816dfd9cfbe5caea0c70a2805d22ae9dc1370ae91005a2fad09c7ae5564fc795099602eb9faab59f2f4e3cc18a5a3be8eb5507 eabcd2022cf868a658b257b8ea6ad62acbbe7dc5.zip
da8430649519f5f55e09175bacbb817321dfca9403dd49c93a14cbfd55b512a7d4da6659cd63a02787345104dbcad001cc5fea7c4c3a23f30539c1dbcce2f4b0 portable-compiler-concat.patch
d
88d2f8f2500b519d6b92a7ac7ed8d725f579ade818b6b44836772effb4
ed4e
6c2c06175021e87391d21adf802ef60dbf9a78f0178195b9307bfe6ddea21c76d
remove-rtld-deepbind.patch"
d
d91fcfad005d4db01dbda61a4954ecc3ab9b734e3434f9c62c252b5
ed
6
4e
ced85c7af051cb00b8085cdfd8a04b537052467a4c9239ed6a13911666ed8f886f8
remove-rtld-deepbind.patch"
This diff is collapsed.
Click to expand it.
testing/intel-graphics-compiler/remove-rtld-deepbind.patch
+
5
−
4
View file @
89dfd9aa
...
...
@@ -2,12 +2,13 @@ RTLD_DEEPBIND is a glibc thing
---
--- a/IGC/VectorCompiler/lib/GenXCodeGen/GenXWrapper.cpp
+++ b/IGC/VectorCompiler/lib/GenXCodeGen/GenXWrapper.cpp
@@ -1
01,7
+1
01
,7 @@
@@ -1
23,8
+1
23
,7 @@
const std::string SpirvLibPath = findSpirvDLL();
#if defined(__linux__)
// Hack to workaround cmoc crashes during loading of SPIRV library
- static auto DeepBindHack = dlopen(SpirvLibName, RTLD_NOW | RTLD_DEEPBIND);
+ static auto DeepBindHack = dlopen(SpirvLibName, RTLD_NOW);
- static auto DeepBindHack =
- dlopen(SpirvLibPath.c_str(), RTLD_NOW | RTLD_DEEPBIND);
+ static auto DeepBindHack = dlopen(SpirvLibPath.c_str(), RTLD_NOW);
#endif // __linux__
using DL = sys::DynamicLibrary;
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment