Skip to content

Commit

Permalink
Merge pull request #60 from shhivv/master
Browse files Browse the repository at this point in the history
chore: remove unnecessary codegen option
  • Loading branch information
suptejas committed Dec 13, 2022
2 parents 17a8b0b + 2d0f055 commit a9d561f
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/core/config/cargo.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,6 @@ pub struct ProfileValues {
pub incremental: bool,
#[serde(rename = "codegen-units")]
pub codegen_units: u16,
#[serde(rename = "split-debuginfo")]
pub split: Option<String>,
}

#[derive(Debug, Serialize, Deserialize)]
Expand Down Expand Up @@ -110,8 +108,6 @@ pub fn add_rustc_wrapper_and_target_configs(
},
profile: Profile {
release: ProfileValues {
split: Some(String::from("...")),

opt_level: 3,
debug: 0,
incremental: false,
Expand All @@ -120,7 +116,6 @@ pub fn add_rustc_wrapper_and_target_configs(
dev: ProfileValues {
codegen_units: 512,
debug: 2,
split: None,
incremental: true,
opt_level: 0,
},
Expand Down

0 comments on commit a9d561f

Please sign in to comment.