emu64 work and misc improvements

This commit is contained in:
Cuyler36
2023-08-28 21:01:23 -04:00
parent 1d9045ad10
commit 595e2a92df
35 changed files with 2746 additions and 6 deletions
+8 -1
View File
@@ -421,11 +421,18 @@ EXTERNAL_DOL_CFLAGS = ' '.join(BASE_DOL_CFLAGS)
EXTERNAL_REL_CFLAGS = ' '.join(BASE_REL_CFLAGS)
PREPROCESS_CFLAGS = ' '.join(PREPROCESSOR_CFLAGS)
LDFLAGS = ' '.join([
DOL_LDFLAGS = ' '.join([
"-maxerrors 1",
"-mapunused"
])
LDFLAGS = ' '.join([
"-maxerrors 1",
"-mapunused",
"-opt_partial",
"-strip_partial"
])
PPCDIS_ANALYSIS_FLAGS = ' '.join([
f"-o {ANALYSIS_OVERRIDES}",
f"-l {EXTERNS}"