987Pull the image
docker pull leavesask/llvm:<tag>
docker run -it --rm leavesask/llvm:<tag>
The base image is spack/ubuntu-bionic.
# Build an image for LLVM 9
make LLVM_VERSION="9"
# Build and publish the image
make release LLVM_VERSION="9"
Check Makefile for more options.
As an alternative, you can build the image with docker build command.
docker build \
--build-arg LLVM_VERSION="9" \
--build-arg BUILD_DATE=`date -u +"%Y-%m-%dT%H:%M:%SZ"` \
--build-arg VCS_REF=`git rev-parse --short HEAD` \
-t my-repo/llvm:latest .
Arguments and their defaults are listed below.
LLVM_VERSION: The version of LLVM supported by ubuntu-bionic (defaults to 9)Content type
Image
Digest
Size
1.8 GB
Last updated
over 6 years ago
docker pull leavesask/llvm