Skip to content

Commit

Permalink
Auto merge of #14164 - madsmtm:target_abi, r=weihanglo
Browse files Browse the repository at this point in the history
Document `CARGO_CFG_TARGET_ABI`

This was [stabilized](rust-lang/rust#119590) in 1.78, but a corresponding entry in Cargo's documentation is still missing.
  • Loading branch information
bors committed Jun 28, 2024
2 parents 9441b91 + 8852019 commit cc1e355
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/doc/src/reference/environment-variables.md
Original file line number Diff line number Diff line change
Expand Up @@ -347,6 +347,7 @@ let out_dir = env::var("OUT_DIR").unwrap();
* `CARGO_CFG_TARGET_ARCH=x86_64` --- The CPU [target architecture].
* `CARGO_CFG_TARGET_VENDOR=apple` --- The [target vendor].
* `CARGO_CFG_TARGET_ENV=gnu` --- The [target environment] ABI.
* `CARGO_CFG_TARGET_ABI=sim` --- The [target ABI].
* `CARGO_CFG_TARGET_POINTER_WIDTH=64` --- The CPU [pointer width].
* `CARGO_CFG_TARGET_ENDIAN=little` --- The CPU [target endianness].
* `CARGO_CFG_TARGET_FEATURE=mmx,sse` --- List of CPU [target features] enabled.
Expand Down Expand Up @@ -397,6 +398,7 @@ let out_dir = env::var("OUT_DIR").unwrap();
[target architecture]: ../../reference/conditional-compilation.html#target_arch
[target vendor]: ../../reference/conditional-compilation.html#target_vendor
[target environment]: ../../reference/conditional-compilation.html#target_env
[target ABI]: ../../reference/conditional-compilation.html#target_abi
[pointer width]: ../../reference/conditional-compilation.html#target_pointer_width
[target endianness]: ../../reference/conditional-compilation.html#target_endian
[target features]: ../../reference/conditional-compilation.html#target_feature
Expand Down

0 comments on commit cc1e355

Please sign in to comment.