Struct rustc::driver::config::CodegenOptions[src]

pub struct CodegenOptions {
    pub ar: Option<String>,
    pub linker: Option<String>,
    pub link_args: Vec<String>,
    pub target_cpu: String,
    pub target_feature: String,
    pub passes: Vec<String>,
    pub llvm_args: Vec<String>,
    pub save_temps: bool,
    pub no_rpath: bool,
    pub no_prepopulate_passes: bool,
    pub no_vectorize_loops: bool,
    pub no_vectorize_slp: bool,
    pub soft_float: bool,
    pub prefer_dynamic: bool,
    pub no_integrated_as: bool,
    pub relocation_model: String,
}

Fields

ar
linker
target_cpu
target_feature
passes
llvm_args
save_temps
no_rpath
no_prepopulate_passes
no_vectorize_loops
no_vectorize_slp
soft_float
prefer_dynamic
no_integrated_as
relocation_model

Trait Implementations

Derived Implementations

impl Clone for CodegenOptions

fn clone(&self) -> CodegenOptions

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