Skip to content

Commit

Permalink
Make travis statically link libvg crt. (#15466)
Browse files Browse the repository at this point in the history
This was disabled because it required nightly Rust.
With Rust 1.19, static crt linking is stable.
  • Loading branch information
PJB3005 authored and gbasood committed Jul 20, 2017
1 parent 3ad3e5e commit ee3ed2b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ script:
- python tools/changelog/ss13_genchangelog.py html/changelog.html html/changelogs --dry-run
- source $HOME/BYOND-${BYOND_MAJOR}.${BYOND_MINOR}/byond/bin/byondsetup
- cd libvg
- rm .cargo/config
# --jobs 1 to prevent threading problems with the BYOND crate.
- cargo test --jobs 1 --verbose
- cd -
Expand Down
4 changes: 1 addition & 3 deletions libvg/.cargo/config
Original file line number Diff line number Diff line change
@@ -1,4 +1,2 @@
[build]
# If you're gonna change anything here.
# Make Travis not blindly delete this to be able to use stable.
rustflags = ["-Z", "unstable-options", "-C", "target-feature=+crt-static"]
rustflags = ["-C", "target-feature=+crt-static"]

0 comments on commit ee3ed2b

Please sign in to comment.