mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-10 19:20:13 +00:00
5c3a722aca
* fix how permuter imports PRINTF macros wrt the ido-has-no-variadic-macros hack * more permuter_settings fixups
35 lines
946 B
TOML
35 lines
946 B
TOML
build_system = "make"
|
|
compiler_type = "ido" # adjusts default weights for permuting
|
|
|
|
[preserve_macros]
|
|
"g[DS]P.*" = "void"
|
|
"gDma.*" = "void"
|
|
"a[A-Z].*" = "void"
|
|
"G_IM_SIZ_.*" = "int"
|
|
"G_[AC]C.*" = "int"
|
|
LOG = "void"
|
|
SET_FULLSCREEN_VIEWPORT = "void"
|
|
OPEN_DISPS = "void"
|
|
CLOSE_DISPS = "void"
|
|
GRAPH_ALLOC = "void*"
|
|
LOG_UTILS_CHECK_NULL_POINTER = "void"
|
|
WORK_DISP = "void*"
|
|
POLY_OPA_DISP = "void*"
|
|
POLY_XLU_DISP = "void*"
|
|
OVERLAY_DISP = "void*"
|
|
"G_MTX_.*" = "int"
|
|
ABS = "int"
|
|
SQ = "int"
|
|
CLAMP = "int"
|
|
|
|
# If changing to not preserve these, add a check for the permuter to IDO_PRINTF_WORKAROUND,
|
|
# so that modern CPP (used by the permuter import) does not error on the IDO-specific hack.
|
|
# For example:
|
|
# #define IDO_PRINTF_WORKAROUND (__sgi && !__GNUC__ && !PERMUTER && !M2CTX)
|
|
PRINTF = "void"
|
|
SCHED_DEBUG_PRINTF = "void"
|
|
ACTOR_DEBUG_PRINTF = "void"
|
|
|
|
[decompme.compilers]
|
|
"tools/ido_recomp/*/7.1/cc" = "ido7.1"
|
|
"tools/ido_recomp/*/5.3/cc" = "ido5.3"
|