Browse Source

Fix RUSTFLAGS not getting passed through

pull/6/head
AzureMarker 3 years ago
parent
commit
779b79dcd6
No known key found for this signature in database
GPG Key ID: 47A133F3BF9D03D3
  1. 3
      src/main.rs

3
src/main.rs

@ -124,7 +124,8 @@ fn check_rust_version() { @@ -124,7 +124,8 @@ fn check_rust_version() {
}
fn build_elf(args: &[&str]) {
let rustflags = format!("-L{}/libctru/lib -lctru ", env::var("DEVKITPRO").unwrap());
let rustflags = env::var("RUSTFLAGS").unwrap_or_default()
+ &format!(" -L{}/libctru/lib -lctru ", env::var("DEVKITPRO").unwrap());
let mut process = Command::new("cargo")
.arg("build")

Loading…
Cancel
Save