Skip to content

Commit

Permalink
Rollup merge of rust-lang#40507 - alexcrichton:static-libcurl, r=brson
Browse files Browse the repository at this point in the history
travis: Ensure cargo links libcurl statically

We don't want a dynamic dependency in the library that we ship, so link it
statically by configuring curl-sys's build script to not pick up the system
version via pkg-config.
  • Loading branch information
frewsxcv committed Mar 17, 2017
2 parents 5c3e066 + 5fab9bf commit e71e336
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/ci/docker/dist-x86-linux/Dockerfile
Expand Up @@ -86,4 +86,10 @@ ENV RUST_CONFIGURE_ARGS \
--enable-extended \
--enable-sanitizers
ENV SCRIPT python2.7 ../x.py dist --host $HOSTS --target $HOSTS

# This is the only builder which will create source tarballs
ENV DIST_SRC 1

# When we build cargo in this container, we don't want it to use the system
# libcurl, instead it should compile its own.
ENV LIBCURL_NO_PKG_CONFIG 1

0 comments on commit e71e336

Please sign in to comment.