-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add OpenCL-SDK related images * Added OpenCL entries to build-all.sh --------- Co-authored-by: Lőrinc Serfőző <[email protected]>
- Loading branch information
1 parent
b131bde
commit bfb2679
Showing
5 changed files
with
225 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
FROM ubuntu:20.04 AS apt-installs | ||
|
||
# Install minimal tools required to fetch the rest | ||
RUN set -ex ; \ | ||
export DEBIAN_FRONTEND=noninteractive ; \ | ||
apt update -qq ; \ | ||
# wget to download repository keys and CMake tarballs | ||
# software-properties-common for the apt-add-repository command | ||
apt install -y -qq wget software-properties-common ; \ | ||
# clean up apt temporary files | ||
rm -rf /var/cache/apt/archives /var/lib/apt/lists/* | ||
|
||
# Register new repositories | ||
RUN set -ex ; \ | ||
export DEBIAN_FRONTEND=noninteractive ; \ | ||
apt update -qq ; \ | ||
# Latest Git can be fethed from official PPA | ||
apt-add-repository -y ppa:git-core/ppa ; \ | ||
# Canonical hosts recent GCC compilers in ubuntu-toolchain-r/test | ||
apt-add-repository -y ppa:ubuntu-toolchain-r/test ; \ | ||
# LLVM hosts most toolchain in separate repos. We only register those absent from ubuntu-toolchain-r/test | ||
wget -q -O - https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add - ; \ | ||
apt-add-repository -y 'deb [arch=amd64] https://apt.llvm.org/focal/ llvm-toolchain-focal-16 pkg-config main' ; \ | ||
# clean up apt temporary files | ||
rm -rf /var/cache/apt/archives /var/lib/apt/lists/* | ||
|
||
# Install various build tools | ||
RUN set -ex ; \ | ||
export DEBIAN_FRONTEND=noninteractive ; \ | ||
apt update -qq ; \ | ||
# ninja, git to download dependencies and build-essential to get linkers, etc. | ||
# ca-certificates to `git clone` via HTTPS | ||
# libidn11 which only CMake 3.1.3 depends on | ||
# ruby to run CMock | ||
apt install -y -qq build-essential ninja-build git ca-certificates libidn11 ruby ; \ | ||
# clean up apt temporary files | ||
rm -rf /var/cache/apt/archives /var/lib/apt/lists/* | ||
|
||
# Install GCC | ||
RUN set -ex ; \ | ||
export DEBIAN_FRONTEND=noninteractive ; \ | ||
apt update -qq ; \ | ||
apt install -y -qq g++-9 g++-13 g++-9-multilib g++-13-multilib ; \ | ||
# clean up apt temporary files | ||
rm -rf /var/cache/apt/archives /var/lib/apt/lists/* | ||
|
||
# Install LLVM | ||
RUN set -ex ; \ | ||
export DEBIAN_FRONTEND=noninteractive ; \ | ||
apt update -qq ; \ | ||
apt install -y -qq clang-10 clang-16 ; \ | ||
# clean up apt temporary files | ||
rm -rf /var/cache/apt/archives /var/lib/apt/lists/* | ||
|
||
# Install SFML dependencies | ||
RUN set -ex ; \ | ||
export DEBIAN_FRONTEND=noninteractive ; \ | ||
apt update -qq ; \ | ||
# alsa: autoconf libtool pkg-config | ||
# glew: libxmu-dev libxi-dev libgl-dev @ vcpkg install-time | ||
# libglu1-mesa-dev @ cmake configure-time | ||
# sfml: libudev-dev libx11-dev libxrandr-dev libxcursor-dev | ||
apt install -y -qq autoconf libtool pkg-config libxmu-dev libxi-dev libgl-dev libglu1-mesa-dev libudev-dev libx11-dev libxrandr-dev libxcursor-dev ; \ | ||
# clean up apt temporary files | ||
rm -rf /var/cache/apt/archives /var/lib/apt/lists/* | ||
|
||
# Install Vcpkg dependencies | ||
RUN set -ex ; \ | ||
export DEBIAN_FRONTEND=noninteractive ; \ | ||
apt update -qq ; \ | ||
# alsa: autoconf libtool | ||
apt install -y -qq curl zip unzip tar ; \ | ||
# clean up apt temporary files | ||
rm -rf /var/cache/apt/archives /var/lib/apt/lists/* | ||
|
||
# Install CMake minimum (3.0.2 (Headers, ICD Loader), 3.1.3 (CLHPP), 3.10.3 (SDK)) and latest (3.26.4) | ||
RUN mkdir -p /opt/Kitware/CMake ; \ | ||
wget -c https://github.com/Kitware/CMake/releases/download/v3.0.2/cmake-3.0.2-Linux-i386.tar.gz -O - | tar -xz --directory /opt/Kitware/CMake ; \ | ||
mv /opt/Kitware/CMake/cmake-3.0.2-Linux-i386 /opt/Kitware/CMake/3.0.2 ; \ | ||
wget -c https://github.com/Kitware/CMake/releases/download/v3.1.3/cmake-3.1.3-Linux-x86_64.tar.gz -O - | tar -xz --directory /opt/Kitware/CMake ; \ | ||
mv /opt/Kitware/CMake/cmake-3.1.3-Linux-x86_64 /opt/Kitware/CMake/3.1.3 ; \ | ||
wget -c https://github.com/Kitware/CMake/releases/download/v3.10.3/cmake-3.10.3-Linux-x86_64.tar.gz -O - | tar -xz --directory /opt/Kitware/CMake ; \ | ||
mv /opt/Kitware/CMake/cmake-3.10.3-Linux-x86_64 /opt/Kitware/CMake/3.10.3 ; \ | ||
wget -c https://github.com/Kitware/CMake/releases/download/v3.26.4/cmake-3.26.4-linux-x86_64.tar.gz -O - | tar -xz --directory /opt/Kitware/CMake ; \ | ||
mv /opt/Kitware/CMake/cmake-3.26.4-linux-x86_64 /opt/Kitware/CMake/3.26.4 | ||
|
||
# Install Vcpkg | ||
RUN git clone --depth 1 https://github.com/Microsoft/vcpkg.git /opt/Microsoft/vcpkg ; \ | ||
/opt/Microsoft/vcpkg/bootstrap-vcpkg.sh ; \ | ||
# install SFML, TCLAP, GLM, GLEW | ||
/opt/Microsoft/vcpkg/vcpkg install sfml tclap glm glew ; \ | ||
rm -rf /opt/Microsoft/vcpkg/buildtrees ; \ | ||
rm -rf /opt/Microsoft/vcpkg/downloads |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
FROM ubuntu:22.04 AS apt-installs | ||
|
||
# Install minimal tools required to fetch the rest | ||
RUN set -ex ; \ | ||
export DEBIAN_FRONTEND=noninteractive ; \ | ||
apt update -qq ; \ | ||
# wget to download repository keys and CMake tarballs | ||
# software-properties-common for the apt-add-repository command | ||
apt install -y -qq wget software-properties-common ; \ | ||
# clean up apt temporary files | ||
rm -rf /var/cache/apt/archives /var/lib/apt/lists/* | ||
|
||
# Register new repositories | ||
RUN set -ex ; \ | ||
export DEBIAN_FRONTEND=noninteractive ; \ | ||
apt update -qq ; \ | ||
# Latest Git can be fethed from official PPA | ||
apt-add-repository -y ppa:git-core/ppa ; \ | ||
# Canonical hosts recent GCC compilers in ubuntu-toolchain-r/test | ||
apt-add-repository -y ppa:ubuntu-toolchain-r/test ; \ | ||
# LLVM hosts most toolchain in separate repos. We only register those absent from ubuntu-toolchain-r/test | ||
wget -q -O - https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add - ; \ | ||
apt-add-repository -y 'deb [arch=amd64] https://apt.llvm.org/jammy/ llvm-toolchain-jammy-16 main' ; \ | ||
# clean up apt temporary files | ||
rm -rf /var/cache/apt/archives /var/lib/apt/lists/* | ||
|
||
# Install various build tools | ||
RUN set -ex ; \ | ||
export DEBIAN_FRONTEND=noninteractive ; \ | ||
apt update -qq ; \ | ||
# ninja, git to download dependencies and build-essential to get linkers, etc. | ||
# ca-certificates to `git clone` via HTTPS | ||
# libidn11 which only CMake 3.1.3 depends on, need to symlink version 12 from system repo | ||
# ruby to run CMock | ||
apt install -y -qq build-essential ninja-build git ca-certificates libidn12 ruby ; \ | ||
ln -s /usr/lib/x86_64-linux-gnu/libidn.so.12.6.3 /usr/lib/x86_64-linux-gnu/libidn.so.11 ; \ | ||
# clean up apt temporary files | ||
rm -rf /var/cache/apt/archives /var/lib/apt/lists/* | ||
|
||
# Install GCC | ||
RUN set -ex ; \ | ||
export DEBIAN_FRONTEND=noninteractive ; \ | ||
apt update -qq ; \ | ||
apt install -y -qq g++-11 g++-13 g++-11-multilib g++-13-multilib ; \ | ||
# clean up apt temporary files | ||
rm -rf /var/cache/apt/archives /var/lib/apt/lists/* | ||
|
||
# Install LLVM | ||
RUN set -ex ; \ | ||
export DEBIAN_FRONTEND=noninteractive ; \ | ||
apt update -qq ; \ | ||
apt install -y -qq clang-14 clang-16 ; \ | ||
# clean up apt temporary files | ||
rm -rf /var/cache/apt/archives /var/lib/apt/lists/* | ||
|
||
# Install SFML dependencies | ||
RUN set -ex ; \ | ||
export DEBIAN_FRONTEND=noninteractive ; \ | ||
apt update -qq ; \ | ||
# alsa: autoconf libtool pkg-config | ||
# glew: libxmu-dev libxi-dev libgl-dev @ vcpkg install-time | ||
# libglu1-mesa-dev @ cmake configure-time | ||
# sfml: libudev-dev libx11-dev libxrandr-dev libxcursor-dev | ||
apt install -y -qq autoconf libtool pkg-config libxmu-dev libxi-dev libgl-dev libglu1-mesa-dev libudev-dev libx11-dev libxrandr-dev libxcursor-dev ; \ | ||
# clean up apt temporary files | ||
rm -rf /var/cache/apt/archives /var/lib/apt/lists/* | ||
|
||
# Install Vcpkg dependencies | ||
RUN set -ex ; \ | ||
export DEBIAN_FRONTEND=noninteractive ; \ | ||
apt update -qq ; \ | ||
# alsa: autoconf libtool | ||
apt install -y -qq curl zip unzip tar ; \ | ||
# clean up apt temporary files | ||
rm -rf /var/cache/apt/archives /var/lib/apt/lists/* | ||
|
||
# Install CMake minimum (3.0.2 (Headers, ICD Loader), 3.1.3 (CLHPP), 3.10.3 (SDK)) and latest (3.26.4) | ||
RUN mkdir -p /opt/Kitware/CMake ; \ | ||
wget -c https://github.com/Kitware/CMake/releases/download/v3.0.2/cmake-3.0.2-Linux-i386.tar.gz -O - | tar -xz --directory /opt/Kitware/CMake ; \ | ||
mv /opt/Kitware/CMake/cmake-3.0.2-Linux-i386 /opt/Kitware/CMake/3.0.2 ; \ | ||
wget -c https://github.com/Kitware/CMake/releases/download/v3.1.3/cmake-3.1.3-Linux-x86_64.tar.gz -O - | tar -xz --directory /opt/Kitware/CMake ; \ | ||
mv /opt/Kitware/CMake/cmake-3.1.3-Linux-x86_64 /opt/Kitware/CMake/3.1.3 ; \ | ||
wget -c https://github.com/Kitware/CMake/releases/download/v3.10.3/cmake-3.10.3-Linux-x86_64.tar.gz -O - | tar -xz --directory /opt/Kitware/CMake ; \ | ||
mv /opt/Kitware/CMake/cmake-3.10.3-Linux-x86_64 /opt/Kitware/CMake/3.10.3 ; \ | ||
wget -c https://github.com/Kitware/CMake/releases/download/v3.26.4/cmake-3.26.4-linux-x86_64.tar.gz -O - | tar -xz --directory /opt/Kitware/CMake ; \ | ||
mv /opt/Kitware/CMake/cmake-3.26.4-linux-x86_64 /opt/Kitware/CMake/3.26.4 | ||
|
||
# Install Vcpkg | ||
RUN git clone --depth 1 https://github.com/Microsoft/vcpkg.git /opt/Microsoft/vcpkg ; \ | ||
/opt/Microsoft/vcpkg/bootstrap-vcpkg.sh ; \ | ||
# install SFML, TCLAP, GLM, GLEW | ||
/opt/Microsoft/vcpkg/vcpkg install sfml tclap glm glew ; \ | ||
rm -rf /opt/Microsoft/vcpkg/buildtrees ; \ | ||
rm -rf /opt/Microsoft/vcpkg/downloads |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
FROM khronosgroup/docker-images:opencl-sdk-base-ubuntu-20.04 | ||
ARG INTEL_OCL_URL=https://github.com/intel/llvm/releases/download/2023-WW27/oclcpuexp-2023.16.6.0.28_rel.tar.gz | ||
ARG INTEL_TBB_URL=https://github.com/oneapi-src/oneTBB/releases/download/v2021.9.0/oneapi-tbb-2021.9.0-lin.tgz | ||
RUN set -ex; \ | ||
export DEBIAN_FRONTEND=noninteractive ; \ | ||
mkdir -p /opt/Intel/oclcpuexp ; \ | ||
wget -c -O - $INTEL_OCL_URL | tar -xz --directory /opt/Intel/oclcpuexp ; \ | ||
wget -c -O - $INTEL_TBB_URL | tar -xz --directory /opt/Intel ; \ | ||
mv /opt/Intel/oneapi-tbb* /opt/Intel/oneapi-tbb ; \ | ||
ln -s /opt/Intel/oneapi-tbb/lib/intel64/gcc4.8/libtbb.so /opt/Intel/oclcpuexp/x64/libtbb.so ; \ | ||
ln -s /opt/Intel/oneapi-tbb/lib/intel64/gcc4.8/libtbbmalloc.so /opt/Intel/oclcpuexp/x64/libtbbmalloc.so ; \ | ||
ln -s /opt/Intel/oneapi-tbb/lib/intel64/gcc4.8/libtbb.so.12 /opt/Intel/oclcpuexp/x64/libtbb.so.12 ; \ | ||
ln -s /opt/Intel/oneapi-tbb/lib/intel64/gcc4.8/libtbbmalloc.so.2 /opt/Intel/oclcpuexp/x64/libtbbmalloc.so.2 ; \ | ||
mkdir -p /etc/OpenCL/vendors ; \ | ||
echo /opt/Intel/oclcpuexp/x64/libintelocl.so | tee /etc/OpenCL/vendors/intel_expcpu.icd ; \ | ||
echo /opt/Intel/oclcpuexp/x64 | tee /etc/ld.so.conf.d/libintelopenclexp.conf ; \ | ||
ldconfig |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
FROM khronosgroup/docker-images:opencl-sdk-base-ubuntu-22.04 | ||
ARG INTEL_OCL_URL=https://github.com/intel/llvm/releases/download/2023-WW27/oclcpuexp-2023.16.6.0.28_rel.tar.gz | ||
ARG INTEL_TBB_URL=https://github.com/oneapi-src/oneTBB/releases/download/v2021.9.0/oneapi-tbb-2021.9.0-lin.tgz | ||
RUN set -ex; \ | ||
export DEBIAN_FRONTEND=noninteractive ; \ | ||
mkdir -p /opt/Intel/oclcpuexp ; \ | ||
wget -c -O - $INTEL_OCL_URL | tar -xz --directory /opt/Intel/oclcpuexp ; \ | ||
wget -c -O - $INTEL_TBB_URL | tar -xz --directory /opt/Intel ; \ | ||
mv /opt/Intel/oneapi-tbb* /opt/Intel/oneapi-tbb ; \ | ||
ln -s /opt/Intel/oneapi-tbb/lib/intel64/gcc4.8/libtbb.so /opt/Intel/oclcpuexp/x64/libtbb.so ; \ | ||
ln -s /opt/Intel/oneapi-tbb/lib/intel64/gcc4.8/libtbbmalloc.so /opt/Intel/oclcpuexp/x64/libtbbmalloc.so ; \ | ||
ln -s /opt/Intel/oneapi-tbb/lib/intel64/gcc4.8/libtbb.so.12 /opt/Intel/oclcpuexp/x64/libtbb.so.12 ; \ | ||
ln -s /opt/Intel/oneapi-tbb/lib/intel64/gcc4.8/libtbbmalloc.so.2 /opt/Intel/oclcpuexp/x64/libtbbmalloc.so.2 ; \ | ||
mkdir -p /etc/OpenCL/vendors ; \ | ||
echo /opt/Intel/oclcpuexp/x64/libintelocl.so | tee /etc/OpenCL/vendors/intel_expcpu.icd ; \ | ||
echo /opt/Intel/oclcpuexp/x64 | tee /etc/ld.so.conf.d/libintelopenclexp.conf ; \ | ||
ldconfig |