Skip to main content

CompileAction

Struct CompileAction 

Source
pub struct CompileAction {
    pub standard: LanguageStandard,
    pub gnu_extensions: bool,
    pub source: Utf8PathBuf,
    pub object: Utf8PathBuf,
    pub mode: CompileMode,
    pub implicit_inputs: Vec<Utf8PathBuf>,
    pub depfile: Option<Utf8PathBuf>,
    pub compiler: Utf8PathBuf,
    pub compiler_wrapper: Option<Utf8PathBuf>,
    pub arguments: CompileArguments,
    pub description: String,
}
Expand description

Compile one translation unit.

Fields§

§standard: LanguageStandard

Effective language standard for this translation unit. Also determines the source language (standard.language()), which selects the rule / lowered action kind, /EHsc, and the /Tp / /Tc source-language flag on MSVC.

§gnu_extensions: bool

Whether this translation unit compiles with GNU language extensions. Strictly per-target: two compiles in one build may differ in both level and this flag. The GNU/Clang lowering spells the standard -std=gnu… instead of -std=c…; the planner rejects the flag on the MSVC dialect before lowering (cl.exe has no GNU dialect mode).

§source: Utf8PathBuf

Absolute path of the translation unit to compile.

§object: Utf8PathBuf

Object file the normal build produces. Retained even in CompileMode::SyntaxOnly so the stamp lives beside it and the workspace-scope filter in cabin check can match on it.

§mode: CompileMode

Object vs. syntax-only.

§implicit_inputs: Vec<Utf8PathBuf>

Inputs the compile depends on but that are not command arguments (e.g. a generated source produced upstream). The source is the sole compiled input and is not repeated here.

§depfile: Option<Utf8PathBuf>

Header-dependency tracking file. Some records that the dialect should wire dependency discovery for this compile - the GNU/Clang lowering emits a -MD -MF <depfile> Makefile depfile here (-MD, not -MMD, so headers found through a system include dir still land in the depfile and keep invalidating rebuilds), while the MSVC lowering ignores the path and relies on /showIncludes.

§compiler: Utf8PathBuf

Compiler driver executable.

§compiler_wrapper: Option<Utf8PathBuf>

Optional compiler wrapper (e.g. ccache) prepended to the run command by lowering. Never affects compile_commands.json, which records the underlying compiler so IDE tooling sees the real driver.

§arguments: CompileArguments

Semantic compile arguments (optimization, defines, includes).

§description: String

Human-readable description for build output (CXX foo.o, CHECK foo.o).

Trait Implementations§

Source§

impl Clone for CompileAction

Source§

fn clone(&self) -> CompileAction

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for CompileAction

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl Eq for CompileAction

Source§

impl PartialEq for CompileAction

Source§

fn eq(&self, other: &CompileAction) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl StructuralPartialEq for CompileAction

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V