From 94a0f8720974fbe13e1fdc73967b97e7b11576cb Mon Sep 17 00:00:00 2001 From: Corwin Kuiper Date: Thu, 20 May 2021 07:18:54 +0100 Subject: [PATCH] build with debug information and zero optimisation --- agb/Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/agb/Cargo.toml b/agb/Cargo.toml index 580036b6..b0e7c590 100644 --- a/agb/Cargo.toml +++ b/agb/Cargo.toml @@ -7,7 +7,8 @@ description = "Library for Game Boy Advance Development" license = "MPL-2.0" [profile.dev] -opt-level = 2 +opt-level = 0 +debug = true [profile.release] panic = "abort"