File tree 1 file changed +7
-0
lines changed
1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -51,6 +51,7 @@ All the lines printed to stdout by a build script are written to a file like `ta
51
51
cargo:rustc-link-lib=static=foo
52
52
cargo:rustc-link-search=native=/path/to/foo
53
53
cargo:rustc-cfg=foo
54
+ cargo:rustc-env=FOO=bar
54
55
# arbitrary user-defined metadata
55
56
cargo:root=/path/to/foo
56
57
cargo:libdir=/path/to/foo/lib
@@ -73,6 +74,12 @@ crate is built:
73
74
* ` rustc-cfg=FEATURE ` indicates that the specified feature will be passed as a
74
75
` --cfg ` flag to the compiler. This is often useful for performing compile-time
75
76
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.
76
83
* ` rerun-if-changed=PATH ` is a path to a file or directory which indicates that
77
84
the build script should be re-run if it changes (detected by a more-recent
78
85
last-modified timestamp on the file). Normally build scripts are re-run if
You can’t perform that action at this time.
0 commit comments