Module rustc_target::spec
source · Expand description
Flexible target specification.
Rust targets a wide variety of usecases, and in the interest of flexibility, allows new target triples to be defined in configuration files. Most users will not need to care about these, but this is invaluable when porting Rust to a new platform, and allows for an unprecedented level of control over how the compiler works.
Using custom targets
A target triple, as passed via rustc --target=TRIPLE
, will first be
compared against the list of built-in targets. This is to ease distributing
rustc (no need for configuration files) and also to hold these built-in
targets as immutable and sacred. If TRIPLE
is not one of the built-in
targets, rustc will check if a file named TRIPLE
exists. If it does, it
will be loaded as the target configuration. If the file does not exist,
rustc will search each directory in the environment variable
RUST_TARGET_PATH
for a file named TRIPLE.json
. The first one found will
be loaded. If no file is found in any of those directories, a fatal error
will be given.
Projects defining their own targets should use
--target=path/to/my-awesome-platform.json
instead of adding to
RUST_TARGET_PATH
.
Defining a new target
Targets are defined using JSON. The Target
struct in
this module defines the format the JSON file should take, though each
underscore in the field names should be replaced with a hyphen (-
) in the
JSON file. Some fields are required in every target specification, such as
llvm-target
, target-endian
, target-pointer-width
, data-layout
,
arch
, and os
. In general, options passed to rustc with -C
override
the target’s settings, though target-feature
and link-args
will add
to the list specified by the target, rather than replace.
Modules
- aix_base 🔒
- Targets the ARMv4T, with code as
a32
code by default. - Targets the ARMv5TE, with code as
a32
code by default. - bpf_base 🔒
- Object files providing support for basic runtime facilities and added to the produced binaries at the start and at the end of linking.
- Bare MIPS32r2, little endian, softfloat, O32 calling convention
- Targets the ARMv4T, with code as
t32
code by default. - Targets the ARMv5TE, with code as
t32
code by default. - A “bare wasm” target representing a WebAssembly output that makes zero assumptions about its environment.
- The
wasm32-wasi
target is a new and still (as of April 2019) an experimental target. The definition in this file is likely to be tweaked over time and shouldn’t be relied on too much. - The
wasm32-wasi-preview1-threads
target is a new and still (as of July 2023) an experimental target. The definition in this file is likely to be tweaked over time and shouldn’t be relied on too much. - A “bare wasm” target representing a WebAssembly output that makes zero assumptions about its environment.
Macros
- cvs 🔒Cow-Vec-Str: Cow<’static, [Cow<’static, str>]>
Structs
- Everything
rustc
knows about how to compile for a specific target. - Optional aspects of a target specification.
- Warnings encountered when parsing the target
json
.
Enums
- Linker is called through a C/C++ compiler.
- Which kind of debuginfo does the target use?
- Everything is flattened to a single enum to make the json encoding/decoding less annoying.
- All linkers have some kinds of command line interfaces and rustc needs to know which commands to use with each of them. So we cluster all such interfaces into a (somewhat arbitrary) number of classes that we call “linker flavors”.
- Linker flavors available externally through command line (
-Clinker-flavor
) or json target specifications. FIXME: This set has accumulated historically, bring it more in line with the internal linker flavors (LinkerFlavor
). - Linker is LLD.
- Controls use of stack canaries.
- Either a target triple string or a path to a JSON file.
Constants
- List of supported targets
Traits
Functions
- Add arguments for the given flavor and also for its “twin” flavors that have a compatible command line interface.
- Resolve the value of the EF_AVR_ARCH field for AVR ELF files, given the name of the target CPU / MCU.