mirror of
https://github.com/zeldaret/tww.git
synced 2024-11-27 07:11:32 +00:00
Switch Runtime.PPCEABI.H to MWCC 1.3
This commit is contained in:
parent
6eb8518355
commit
cc0649fae9
@ -217,6 +217,7 @@ cflags_runtime = [
|
||||
"-gccinc",
|
||||
"-common off",
|
||||
"-inline deferred,auto",
|
||||
"-char signed",
|
||||
]
|
||||
|
||||
# Dolphin library flags
|
||||
@ -1111,7 +1112,7 @@ config.libs = [
|
||||
),
|
||||
{
|
||||
"lib": "Runtime.PPCEABI.H",
|
||||
"mw_version": "GC/1.3.2",
|
||||
"mw_version": "GC/1.3",
|
||||
"cflags": cflags_runtime,
|
||||
"host": False,
|
||||
"objects": [
|
||||
@ -1137,7 +1138,7 @@ config.libs = [
|
||||
Object(Matching, "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Src/alloc.c", extra_cflags=["-inline noauto"]),
|
||||
Object(Matching, "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Src/errno.c"),
|
||||
Object(Matching, "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Src/ansi_files.c"),
|
||||
Object(Matching, "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common_Embedded/Src/ansi_fp.c", extra_cflags=["-inline noauto", "-char signed"]),
|
||||
Object(Matching, "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common_Embedded/Src/ansi_fp.c", extra_cflags=["-inline noauto"]),
|
||||
Object(Matching, "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Src/arith.c"),
|
||||
Object(Matching, "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Src/buffer_io.c"),
|
||||
Object(Matching, "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Src/ctype.c"),
|
||||
@ -1148,9 +1149,9 @@ config.libs = [
|
||||
Object(Matching, "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Src/mem.c"),
|
||||
Object(Matching, "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Src/mem_funcs.c"),
|
||||
Object(Matching, "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Src/misc_io.c"),
|
||||
Object(Matching, "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Src/printf.c", extra_cflags=["-char signed"]),
|
||||
Object(Matching, "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Src/printf.c"),
|
||||
Object(Matching, "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Src/float.c"),
|
||||
Object(Matching, "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Src/scanf.c", extra_cflags=["-char signed"]),
|
||||
Object(Matching, "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Src/scanf.c"),
|
||||
Object(Matching, "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Src/string.c"),
|
||||
Object(Matching, "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Src/strtoul.c"),
|
||||
Object(Matching, "PowerPC_EABI_Support/MSL/MSL_C/MSL_Common_Embedded/Src/uart_console_io.c"),
|
||||
|
@ -65,7 +65,7 @@ void __fill_mem(void* dst, int val, u32 n)
|
||||
|
||||
((u8*)dst) = ((u8*)(((u32*)dst) + 1)) - 1;
|
||||
|
||||
n &= 3;
|
||||
n = n & 3;
|
||||
}
|
||||
|
||||
if (n)
|
||||
|
Loading…
Reference in New Issue
Block a user