Skip to content

Commit

Permalink
Merge pull request #21 from iqlusion-io/dockerfile-rustflags
Browse files Browse the repository at this point in the history
Dockerfile: Set RUSTFLAGS
  • Loading branch information
tony-iqlusion authored Apr 9, 2018
2 parents 6af421e + 3dea594 commit a176004
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: 2
jobs:
build:
docker:
- image: iqlusion/rust-ci:201804061 # bump cache keys when modifying this
- image: iqlusion/rust-ci:201804090 # bump cache keys when modifying this

steps:
- checkout
Expand Down
4 changes: 4 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

FROM centos:7.4.1708

# Include cargo in the path
ENV PATH "$PATH:/root/.cargo/bin"

# Install/update RPMs
Expand Down Expand Up @@ -45,3 +46,6 @@ ENV LD_LIBRARY_PATH=/opt/rh/llvm-toolset-7/root/usr/lib64
ENV PATH "/opt/rh/llvm-toolset-7/root/usr/bin:/opt/rh/llvm-toolset-7/root/usr/sbin:$PATH"
ENV PKG_CONFIG_PATH=/opt/rh/llvm-toolset-7/root/usr/lib64/pkgconfig
ENV X_SCLS llvm-toolset-7

# Configure RUSTFLAGS
ENV RUSTFLAGS "-Ctarget-feature=+aes"

0 comments on commit a176004

Please sign in to comment.