Skip to content

Instantly share code, notes, and snippets.

@tzutalin
Forked from velenux/opencl-headers.sh
Last active May 6, 2016 07:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tzutalin/abb33fa21ca24315595556fd4104d1bf to your computer and use it in GitHub Desktop.
Save tzutalin/abb33fa21ca24315595556fd4104d1bf to your computer and use it in GitHub Desktop.
Download OpenCL headers
DIR=.
VERSION=12
echo "Downloading headers for version ${VERSION}..."
mkdir -p "${DIR}/CL-${VERSION}"
cd "${DIR}/CL-${VERSION}"
wget https://raw.githubusercontent.com/KhronosGroup/OpenCL-Headers/opencl${VERSION}/opencl.h
wget https://raw.githubusercontent.com/KhronosGroup/OpenCL-Headers/opencl${VERSION}/cl_platform.h
wget https://raw.githubusercontent.com/KhronosGroup/OpenCL-Headers/opencl${VERSION}/cl.h
wget https://raw.githubusercontent.com/KhronosGroup/OpenCL-Headers/opencl${VERSION}/cl_ext.h
wget https://raw.githubusercontent.com/KhronosGroup/OpenCL-Headers/opencl${VERSION}/cl_egl.h
wget https://raw.githubusercontent.com/KhronosGroup/OpenCL-Headers/opencl${VERSION}/cl_dx9_media_sharing.h
wget https://raw.githubusercontent.com/KhronosGroup/OpenCL-Headers/opencl${VERSION}/cl_d3d10.h
wget https://raw.githubusercontent.com/KhronosGroup/OpenCL-Headers/opencl${VERSION}/cl_d3d11.h
wget https://raw.githubusercontent.com/KhronosGroup/OpenCL-Headers/opencl${VERSION}/cl_gl.h
wget https://raw.githubusercontent.com/KhronosGroup/OpenCL-Headers/opencl${VERSION}/cl_gl_ext.h
wget https://www.khronos.org/registry/cl/api/2.1/cl.hpp
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment