aboutsummaryrefslogtreecommitdiff
path: root/cc/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'cc/README.md')
-rw-r--r--cc/README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/cc/README.md b/cc/README.md
index f65d0c0..e3c6ad0 100644
--- a/cc/README.md
+++ b/cc/README.md
@@ -2,8 +2,7 @@
A library to compile C/C++/assembly into a Rust library/application.
-[![Build Status](https://travis-ci.org/alexcrichton/cc-rs.svg?branch=master)](https://travis-ci.org/alexcrichton/cc-rs)
-[![Build status](https://ci.appveyor.com/api/projects/status/onu270iw98h81nwv?svg=true)](https://ci.appveyor.com/project/alexcrichton/cc-rs)
+[![Build Status](https://dev.azure.com/alexcrichton/cc-rs/_apis/build/status/alexcrichton.cc-rs?branchName=master)](https://dev.azure.com/alexcrichton/cc-rs/_build/latest?definitionId=5&branchName=master)
[Documentation](https://docs.rs/cc)
@@ -77,6 +76,7 @@ number of different environment variables.
certain `TARGET`s, it also is assumed to know about other flags (most
common is `-fPIC`).
* `AR` - the `ar` (archiver) executable to use to build the static library.
+* `CRATE_CC_NO_DEFAULTS` - the default compiler flags may cause conflicts in some cross compiling scenarios. Setting this variable will disable the generation of default compiler flags.
Each of these variables can also be supplied with certain prefixes and suffixes,
in the following prioritized order:
@@ -88,7 +88,7 @@ in the following prioritized order:
If none of these variables exist, cc-rs uses built-in defaults
-In addition to the the above optional environment variables, `cc-rs` has some
+In addition to the above optional environment variables, `cc-rs` has some
functions with hard requirements on some variables supplied by [cargo's
build-script driver][cargo] that it has the `TARGET`, `OUT_DIR`, `OPT_LEVEL`,
and `HOST` variables.