Skip to content

Commit

Permalink
remove dead code
Browse files Browse the repository at this point in the history
  • Loading branch information
trxcllnt committed Aug 12, 2024
1 parent d00b556 commit aff0d27
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions src/compiler/nvcc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -353,13 +353,6 @@ pub fn generate_compile_commands(
.context("Missing object file output").unwrap()
.path.clone();

// Not sure if there's cases where we want this, so disabling for now
// let output = if output.is_absolute() {
// output
// } else {
// cwd.join(output)
// };

arguments.extend(vec![
parsed_args.compilation_flag.clone(),
"-o".into(),
Expand Down Expand Up @@ -764,11 +757,6 @@ where
} else {
Err(ProcessError(output).into())
}
// match output.await {
// Ok((output, nvcc_subcommand_groups)) => {
// },
// Err(err) => Err(err)
// }
}

async fn run_nvcc_subcommands<T>(
Expand Down

0 comments on commit aff0d27

Please sign in to comment.