Skip to content

Commit

Permalink
TEST: Try to pass CI
Browse files Browse the repository at this point in the history
  • Loading branch information
FenrirWolf committed Jul 28, 2023
1 parent d30a827 commit e9c5371
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion ctru-sys/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,11 @@ fn main() {
sysroot.to_str().unwrap(),
"-isystem",
system_include.to_str().unwrap(),
"-isystem",
PathBuf::from(devkitarm.as_str())
.join("lib/gcc/arm-none-eabi/13.1.0/include")
.to_str()
.unwrap(),
"-I",
include_path.to_str().unwrap(),
"-mfloat-abi=hard",
Expand Down Expand Up @@ -109,7 +114,7 @@ fn main() {
.flag("-mfpu=vfp")
.flag("-mtp=soft")
.flag("-Wno-deprecated-declarations")
.compile("libctru_statics_wrapper");
.compile("ctru_statics_wrapper");
}

fn parse_version(version: &str) -> Result<(String, String, String), &str> {
Expand Down

0 comments on commit e9c5371

Please sign in to comment.