Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
OpenCL: Add headers and loader for drivers
Minimum required to build and run OpenCL Apps
  • Loading branch information
thomas committed Aug 19, 2021
1 parent af7c727 commit a2ac8a8
Show file tree
Hide file tree
Showing 2 changed files with 73 additions and 0 deletions.
34 changes: 34 additions & 0 deletions OpenCL-Headers.be0
@@ -0,0 +1,34 @@
#!/usr/bin/env beesh

# BEE_VERSION OpenCL-Headers-2021.06.30-0

# SRCURL[0]="https://github.com/KhronosGroup/OpenCL-Headers/archive/refs/tags/v${PKGVERSION}.tar.gz"
SRCURL[0]="https://beehive.molgen.mpg.de/22007c68beb0b3c749df6e48e0498762/OpenCL-Headers-2021.06.30.tar.gz"

# PATCHURL+=()

# build_in_sourcedir

# sourcesubdir_append src

#mee_extract() {
# bee_extract "${@}"
#}

#mee_patch() {
# bee_patch "${@}"
#}

#mee_configure() {
# bee_configure
#}

#mee_build() {
# bee_build
#}

#mee_install() {
# bee_install
#}

## by default this may be 'make install DESTDIR="${D}"'
39 changes: 39 additions & 0 deletions ocl-icd.be0
@@ -0,0 +1,39 @@
#!/usr/bin/env beesh

# BEE_VERSION ocl-icd-2.3.1-0

# SRCURL[0]="https://github.com/OCL-dev/ocl-icd/archive/refs/tags/v${PKGVERSION}.tar.gz"
SRCURL[0]="https://beehive.molgen.mpg.de/4eafce4f0212691be5685597e8196564/ocl-icd-2.3.1.tar.gz"

# PATCHURL+=()

# build_in_sourcedir

# sourcesubdir_append src

#mee_extract() {
# bee_extract "${@}"
#}

#mee_patch() {
# bee_patch "${@}"
#}

mee_patch_post() { # do it here, making buildtype detectable
cd ${S}
./bootstrap
}

#mee_configure() {
# bee_configure
#}

#mee_build() {
# bee_build
#}

#mee_install() {
# bee_install
#}

## by default this may be 'make install DESTDIR="${D}"'

0 comments on commit a2ac8a8

Please sign in to comment.