Skip to content

Commit

Permalink
fix: spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
0xWOLAND committed Aug 23, 2024
1 parent 3ada519 commit 8f331e8
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ include!("src/enums.rs");
include!("src/consts.rs");
include!("src/pairings.rs");

#[allow(unexpected_cfgs)]
#[cfg(not(target_os = "riscv32imac-unknown-none-elf"))]
#[allow(unexpected_cfgs)]
fn main() {
use std::{fs, io::Write, path::Path};
#[derive(Debug, Clone, PartialEq, Eq)]
Expand Down Expand Up @@ -230,8 +230,9 @@ fn main() {

g2_file.write_all(&g2_bytes).unwrap();
}
#[allow(unexpected_cfgs)]

#[cfg(target_os = "riscv32imac-unknown-none-elf")]
#[allow(unexpected_cfgs)]
fn main() {
// Binaries cannot be built in a RISC-V environment
}

0 comments on commit 8f331e8

Please sign in to comment.