| # Copyright 2020 Google LLC |
| # |
| # Licensed under the Apache License, Version 2.0 (the "License"); |
| # you may not use this file except in compliance with the License. |
| # You may obtain a copy of the License at |
| # |
| # https://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, software |
| # distributed under the License is distributed on an "AS IS" BASIS, |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| # See the License for the specific language governing permissions and |
| # limitations under the License. |
| |
| FROM gcr.io/iree-oss/cmake@sha256:644cc10ea5a33bd97be51a8f6fd6ee7e2ab3904f468873be0f71373b0ec48919 AS install-swiftshader |
| WORKDIR /install-swiftshader |
| |
| RUN apt-get update && apt-get install -y git |
| |
| ARG SWIFTSHADER_COMMIT=84f5eeb6dd9b225f465f93737fa76aad7de355cf |
| |
| # zlib is needed for compiling SwiftShader. |
| RUN apt-get update && apt-get install -y zlib1g-dev |
| RUN git clone https://github.com/google/swiftshader |
| RUN cd swiftshader && git checkout "${SWIFTSHADER_COMMIT?}" && cd .. |
| # Only build SwiftShader Vulkan ICD. |
| RUN cmake -S swiftshader/ -B build-swiftshader/ \ |
| -GNinja \ |
| -DSWIFTSHADER_BUILD_VULKAN=ON \ |
| -DSWIFTSHADER_BUILD_EGL=OFF \ |
| -DSWIFTSHADER_BUILD_GLESv2=OFF \ |
| -DSWIFTSHADER_BUILD_GLES_CM=OFF \ |
| -DSWIFTSHADER_BUILD_PVR=OFF \ |
| -DSWIFTSHADER_BUILD_TESTS=OFF |
| RUN cmake --build build-swiftshader/ \ |
| --config Release \ |
| --target vk_swiftshader |
| # Copy the ICD JSON and .so to a known place. |
| RUN cp -rf build-swiftshader/Linux /swiftshader |
| # Keep track of the commit we are using. |
| RUN echo "${SWIFTSHADER_COMMIT?}" > /swiftshader/git-commit |
| |
| # Ubuntu 18.04 |
| FROM ubuntu@sha256:fd25e706f3dea2a5ff705dbc3353cf37f08307798f3e360a13e9385840f73fb3 AS final |
| COPY --from=install-swiftshader /swiftshader /swiftshader |