Skip to content

Commit 8e6ffa5

Browse files
committed
Document the feature
1 parent cb1e615 commit 8e6ffa5

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/doc/build-script.md

+7
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ All the lines printed to stdout by a build script are written to a file like `ta
5151
cargo:rustc-link-lib=static=foo
5252
cargo:rustc-link-search=native=/path/to/foo
5353
cargo:rustc-cfg=foo
54+
cargo:rustc-env=FOO=bar
5455
# arbitrary user-defined metadata
5556
cargo:root=/path/to/foo
5657
cargo:libdir=/path/to/foo/lib
@@ -73,6 +74,12 @@ crate is built:
7374
* `rustc-cfg=FEATURE` indicates that the specified feature will be passed as a
7475
`--cfg` flag to the compiler. This is often useful for performing compile-time
7576
detection of various features.
77+
* `rustc-env=VAR=VALUE` indicates that the specified environment variable
78+
will be added to the environment which the compiler is run within.
79+
The value can be then retrieved by the `env!` macro in the compiled crate.
80+
This is useful for embedding additional metadata in crate's code,
81+
such as the hash of Git HEAD or the unique identifier of a continuous
82+
integration server.
7683
* `rerun-if-changed=PATH` is a path to a file or directory which indicates that
7784
the build script should be re-run if it changes (detected by a more-recent
7885
last-modified timestamp on the file). Normally build scripts are re-run if

0 commit comments

Comments
 (0)