Sign inSign up

leavesask/llvm

By leavesask

Updated over 6 years ago

Image
0

482

leavesask/llvm repository overview

Layers Version Commit License Docker Pulls Automated Build

Supported tags

  • 9
  • 8
  • 7

How to use

  1. Install docker engine

  2. Pull the image

docker pull leavesask/llvm:<tag>
  1. Run the image interactively
docker run -it --rm leavesask/llvm:<tag>

How to build

The base image is spack/ubuntu-bionic.

make

# 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.

docker build

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)

Tag summary

Content type

Image

Digest

Size

1.8 GB

Last updated

over 6 years ago

docker pull leavesask/llvm