From f84b74b7ff8606a7c87f019a68bc0f32d385ac4c Mon Sep 17 00:00:00 2001 From: dbalatoni13 Date: Tue, 12 Nov 2024 22:38:27 +0100 Subject: [PATCH] Set DebuggerDriver.c to unmatching as we still have to figure out the inling issue --- configure.py | 4 ++-- src/OdemuExi2/DebuggerDriver.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/configure.py b/configure.py index f54e93c4..f8a43598 100644 --- a/configure.py +++ b/configure.py @@ -242,7 +242,7 @@ cflags_trk = [ cflags_odemuexi = [ *cflags_base, - "-inline auto,deferred", + # TODO figure out flags ] cflags_amcstub = [ @@ -764,7 +764,7 @@ config.libs = [ "cflags": cflags_odemuexi, "host": False, "objects": [ - Object(Matching, "OdemuExi2/DebuggerDriver.c"), + Object(NonMatching, "OdemuExi2/DebuggerDriver.c"), ], }, { diff --git a/src/OdemuExi2/DebuggerDriver.c b/src/OdemuExi2/DebuggerDriver.c index 3a56495b..e9be8b4e 100644 --- a/src/OdemuExi2/DebuggerDriver.c +++ b/src/OdemuExi2/DebuggerDriver.c @@ -23,7 +23,7 @@ static u8 SendCount = 0x80; #define IS_FALSE(x) !IS_TRUE(x) #define ROUND_UP(x, align) (((x) + (align)-1) & (-(align))) -// TODO this matches, but there are probably no inline flags used, so the order of functions would be different that way +// TODO void DBGEXIInit() {