From 734a337d071c185a1c4c33f569e20ad4ee4ce767 Mon Sep 17 00:00:00 2001 From: Corwin Kuiper Date: Thu, 20 May 2021 07:18:33 +0100 Subject: [PATCH] assemble with debug information --- agb/build.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/agb/build.rs b/agb/build.rs index b46c17aa..360dfae0 100644 --- a/agb/build.rs +++ b/agb/build.rs @@ -12,6 +12,7 @@ fn main() { let out = std::process::Command::new("arm-none-eabi-as") .arg("-mthumb-interwork") .arg("-mthumb") + .arg("-g") .args(&["-o", out_file_path.as_str()]) .arg("crt0.s") .output()