Skip to content

Commit

Permalink
Use the toolchain impl for Linux amd64 builds
Browse files Browse the repository at this point in the history
  • Loading branch information
AJIOB committed Mar 3, 2024
1 parent fd146ba commit 5e0b474
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/dist/pkg.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ use std::str;

use crate::errors::*;

#[cfg(all(target_os = "linux", target_arch = "x86_64"))]
pub use self::toolchain_imp::*;

pub trait ToolchainPackager: Send {
fn write_pkg(self: Box<Self>, f: fs::File) -> Result<()>;
}
Expand Down

0 comments on commit 5e0b474

Please sign in to comment.