2023-10-03 06:59:01 +00:00
|
|
|
# Build options can be changed by modifying the makefile or by building with 'make SETTING=value'.
|
|
|
|
# It is also possible to override the settings in Defaults in a file called .make_options as 'SETTING=value'.
|
|
|
|
|
|
|
|
-include .make_options
|
|
|
|
|
2023-10-15 22:14:57 +00:00
|
|
|
MAKEFLAGS += --no-builtin-rules --no-print-directory
|
2023-10-03 06:59:01 +00:00
|
|
|
|
2023-12-26 20:55:57 +00:00
|
|
|
# Returns the path to the command $(1) if exists. Otherwise returns an empty string.
|
|
|
|
find-command = $(shell which $(1) 2>/dev/null)
|
|
|
|
|
2023-10-03 06:59:01 +00:00
|
|
|
#### Defaults ####
|
|
|
|
|
|
|
|
# If COMPARE is 1, check the output md5sum after building
|
|
|
|
COMPARE ?= 1
|
|
|
|
# If NON_MATCHING is 1, define the NON_MATCHING C flag when building
|
|
|
|
NON_MATCHING ?= 0
|
|
|
|
# if WERROR is 1, pass -Werror to CC_CHECK, so warnings would be treated as errors
|
|
|
|
WERROR ?= 0
|
|
|
|
# Keep .mdebug section in build
|
|
|
|
KEEP_MDEBUG ?= 0
|
|
|
|
# Check code syntax with host compiler
|
|
|
|
RUN_CC_CHECK ?= 1
|
|
|
|
CC_CHECK_COMP ?= gcc
|
|
|
|
# Dump build object files
|
|
|
|
OBJDUMP_BUILD ?= 0
|
|
|
|
# Number of threads to compress with
|
|
|
|
N_THREADS ?= $(shell nproc)
|
2023-12-04 21:36:31 +00:00
|
|
|
# Whether to colorize build messages
|
|
|
|
COLOR ?= 1
|
|
|
|
# Whether to hide commands or not
|
|
|
|
VERBOSE ?= 0
|
|
|
|
# Command for printing messages during the make.
|
|
|
|
PRINT ?= printf
|
2023-10-03 06:59:01 +00:00
|
|
|
|
|
|
|
# Set prefix to mips binutils binaries (mips-linux-gnu-ld => 'mips-linux-gnu-') - Change at your own risk!
|
2023-12-26 20:55:57 +00:00
|
|
|
# Auto-detect prefix for MIPS toolchain
|
|
|
|
ifneq ($(call find-command,mips-linux-gnu-ld),)
|
|
|
|
MIPS_BINUTILS_PREFIX := mips-linux-gnu-
|
|
|
|
else ifneq ($(call find-command,mips64-linux-gnu-ld),)
|
|
|
|
MIPS_BINUTILS_PREFIX := mips64-linux-gnu-
|
|
|
|
else ifneq ($(call find-command,mips64-elf-ld),)
|
|
|
|
MIPS_BINUTILS_PREFIX := mips64-elf-
|
|
|
|
else
|
|
|
|
$(error Unable to detect a suitable MIPS toolchain installed)
|
|
|
|
endif
|
2023-10-03 06:59:01 +00:00
|
|
|
|
2023-10-03 05:57:03 +00:00
|
|
|
VERSION ?= us
|
|
|
|
|
|
|
|
BASEROM := baserom.$(VERSION).z64
|
2023-10-15 22:47:03 +00:00
|
|
|
BASEROM_UNCOMPRESSED := baserom.$(VERSION).uncompressed.z64
|
2023-10-03 05:57:03 +00:00
|
|
|
TARGET := starfox64
|
|
|
|
|
2023-10-03 06:59:01 +00:00
|
|
|
### Output ###
|
|
|
|
|
|
|
|
BUILD_DIR := build
|
2023-10-16 09:17:33 +00:00
|
|
|
TOOLS := tools
|
|
|
|
PYTHON := python3
|
2023-10-15 14:40:38 +00:00
|
|
|
ROM := $(BUILD_DIR)/$(TARGET).$(VERSION).uncompressed.z64
|
|
|
|
ROMC := $(BUILD_DIR)/$(TARGET).$(VERSION).z64
|
2023-10-03 06:59:01 +00:00
|
|
|
ELF := $(BUILD_DIR)/$(TARGET).$(VERSION).elf
|
|
|
|
LD_MAP := $(BUILD_DIR)/$(TARGET).$(VERSION).map
|
|
|
|
LD_SCRIPT := linker_scripts/$(VERSION)/$(TARGET).ld
|
|
|
|
|
|
|
|
#### Setup ####
|
|
|
|
|
|
|
|
BUILD_DEFINES ?=
|
|
|
|
|
|
|
|
ifeq ($(VERSION),us)
|
|
|
|
BUILD_DEFINES += -DVERSION_US=1
|
|
|
|
else
|
|
|
|
$(error Invalid VERSION variable detected. Please use 'us')
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(NON_MATCHING),1)
|
|
|
|
BUILD_DEFINES += -DNON_MATCHING -DAVOID_UB
|
|
|
|
COMPARE := 0
|
|
|
|
endif
|
|
|
|
|
|
|
|
MAKE = make
|
|
|
|
CPPFLAGS += -fno-dollars-in-identifiers -P
|
|
|
|
LDFLAGS := --no-check-sections --accept-unknown-input-arch --emit-relocs
|
|
|
|
|
|
|
|
UNAME_S := $(shell uname -s)
|
2023-12-04 21:36:31 +00:00
|
|
|
UNAME_M := $(shell uname -m)
|
2023-10-03 06:59:01 +00:00
|
|
|
ifeq ($(OS),Windows_NT)
|
|
|
|
$(error Native Windows is currently unsupported for building this repository, use WSL instead c:)
|
|
|
|
else ifeq ($(UNAME_S),Linux)
|
|
|
|
DETECTED_OS := linux
|
2023-12-04 21:36:31 +00:00
|
|
|
#Detect aarch64 devices (Like Raspberry Pi OS 64-bit)
|
|
|
|
#If it's found, then change the compiler to a version that can compile in 32 bit mode.
|
|
|
|
ifeq ($(UNAME_M),aarch64)
|
|
|
|
CC_CHECK_COMP := arm-linux-gnueabihf-gcc
|
|
|
|
endif
|
2023-10-03 06:59:01 +00:00
|
|
|
else ifeq ($(UNAME_S),Darwin)
|
2023-12-26 20:55:57 +00:00
|
|
|
DETECTED_OS := macos
|
2023-10-03 06:59:01 +00:00
|
|
|
MAKE := gmake
|
|
|
|
CPPFLAGS += -xc++
|
|
|
|
endif
|
|
|
|
|
2023-12-04 21:36:31 +00:00
|
|
|
# Support python venv's if one is installed.
|
|
|
|
PYTHON_VENV = .venv/bin/python3
|
|
|
|
ifneq "$(wildcard $(PYTHON_VENV) )" ""
|
|
|
|
PYTHON = $(PYTHON_VENV)
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(VERBOSE),0)
|
|
|
|
V := @
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(COLOR),1)
|
|
|
|
NO_COL := \033[0m
|
|
|
|
RED := \033[0;31m
|
|
|
|
GREEN := \033[0;32m
|
|
|
|
BLUE := \033[0;34m
|
|
|
|
YELLOW := \033[0;33m
|
|
|
|
BLINK := \033[33;5m
|
|
|
|
endif
|
|
|
|
|
|
|
|
# Common build print status function
|
|
|
|
define print
|
|
|
|
@$(PRINT) "$(GREEN)$(1) $(YELLOW)$(2)$(GREEN) -> $(BLUE)$(3)$(NO_COL)\n"
|
|
|
|
endef
|
|
|
|
|
2023-10-03 06:59:01 +00:00
|
|
|
#### Tools ####
|
|
|
|
ifneq ($(shell type $(MIPS_BINUTILS_PREFIX)ld >/dev/null 2>/dev/null; echo $$?), 0)
|
|
|
|
$(error Unable to find $(MIPS_BINUTILS_PREFIX)ld. Please install or build MIPS binutils, commonly mips-linux-gnu. (or set MIPS_BINUTILS_PREFIX if your MIPS binutils install uses another prefix))
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
|
|
### Compiler ###
|
|
|
|
|
2023-12-04 21:36:31 +00:00
|
|
|
IDO := $(TOOLS)/ido-recomp/$(DETECTED_OS)/cc
|
2023-10-03 06:59:01 +00:00
|
|
|
AS := $(MIPS_BINUTILS_PREFIX)as
|
|
|
|
LD := $(MIPS_BINUTILS_PREFIX)ld
|
|
|
|
OBJCOPY := $(MIPS_BINUTILS_PREFIX)objcopy
|
|
|
|
OBJDUMP := $(MIPS_BINUTILS_PREFIX)objdump
|
|
|
|
ICONV := iconv
|
2023-10-16 09:17:33 +00:00
|
|
|
ASM_PROC := $(PYTHON) $(TOOLS)/asm-processor/build.py
|
2023-10-03 06:59:01 +00:00
|
|
|
CAT := cat
|
2024-02-18 02:19:18 +00:00
|
|
|
TORCH := tools/Torch/cmake-build-release/torch
|
2023-10-03 06:59:01 +00:00
|
|
|
|
2023-12-26 20:55:57 +00:00
|
|
|
# Prefer clang as C preprocessor if installed on the system
|
|
|
|
ifneq (,$(call find-command,clang))
|
|
|
|
CPP := clang
|
|
|
|
CPPFLAGS := -E -P -x c -Wno-trigraphs -D_LANGUAGE_ASSEMBLY
|
|
|
|
else
|
|
|
|
CPP := cpp
|
|
|
|
CPPFLAGS := -P -Wno-trigraphs -D_LANGUAGE_ASSEMBLY
|
|
|
|
endif
|
|
|
|
|
2023-10-03 06:59:01 +00:00
|
|
|
ASM_PROC_FLAGS := --input-enc=utf-8 --output-enc=euc-jp --convert-statics=global-with-filename
|
|
|
|
|
2023-12-04 21:36:31 +00:00
|
|
|
SPLAT ?= $(PYTHON) $(TOOLS)/splat/split.py
|
2023-10-03 05:57:03 +00:00
|
|
|
SPLAT_YAML ?= $(TARGET).$(VERSION).yaml
|
|
|
|
|
2023-10-16 09:17:33 +00:00
|
|
|
COMPTOOL := $(TOOLS)/comptool.py
|
2023-10-16 13:54:41 +00:00
|
|
|
COMPTOOL_DIR := baserom
|
|
|
|
MIO0 := $(TOOLS)/mio0
|
2023-10-03 05:57:03 +00:00
|
|
|
|
|
|
|
|
2023-10-03 06:59:01 +00:00
|
|
|
IINC := -Iinclude -Ibin/$(VERSION) -I.
|
|
|
|
IINC += -Ilib/ultralib/include -Ilib/ultralib/include/PR -Ilib/ultralib/include/ido
|
|
|
|
|
|
|
|
ifeq ($(KEEP_MDEBUG),0)
|
|
|
|
RM_MDEBUG = $(OBJCOPY) --remove-section .mdebug $@
|
|
|
|
else
|
|
|
|
RM_MDEBUG = @:
|
|
|
|
endif
|
|
|
|
|
|
|
|
# Check code syntax with host compiler
|
|
|
|
CHECK_WARNINGS := -Wall -Wextra -Wimplicit-fallthrough -Wno-unknown-pragmas -Wno-missing-braces -Wno-sign-compare -Wno-uninitialized
|
|
|
|
# Have CC_CHECK pretend to be a MIPS compiler
|
|
|
|
MIPS_BUILTIN_DEFS := -DMIPSEB -D_MIPS_FPSET=16 -D_MIPS_ISA=2 -D_ABIO32=1 -D_MIPS_SIM=_ABIO32 -D_MIPS_SZINT=32 -D_MIPS_SZPTR=32
|
|
|
|
ifneq ($(RUN_CC_CHECK),0)
|
|
|
|
# The -MMD flags additionaly creates a .d file with the same name as the .o file.
|
2023-12-08 21:58:37 +00:00
|
|
|
CHECK_WARNINGS := -Wno-unused-variable -Wno-int-conversion
|
2023-10-03 06:59:01 +00:00
|
|
|
CC_CHECK := $(CC_CHECK_COMP)
|
2023-12-04 21:36:31 +00:00
|
|
|
CC_CHECK_FLAGS := -MMD -MP -fno-builtin -fsyntax-only -funsigned-char -fdiagnostics-color -std=gnu89 -DNON_MATCHING -DAVOID_UB -DCC_CHECK=1
|
|
|
|
|
|
|
|
# Ensure that gcc treats the code as 32-bit
|
|
|
|
ifeq ($(UNAME_M),aarch64)
|
|
|
|
CC_CHECK_FLAGS += -march=armv7-a+fp
|
|
|
|
else
|
|
|
|
CC_CHECK_FLAGS += -m32
|
|
|
|
endif
|
|
|
|
ifneq ($(WERROR), 0)
|
2023-10-03 06:59:01 +00:00
|
|
|
CHECK_WARNINGS += -Werror
|
|
|
|
endif
|
|
|
|
else
|
|
|
|
CC_CHECK := @:
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
|
|
CFLAGS += -G 0 -non_shared -Xcpluscomm -nostdinc -Wab,-r4300_mul
|
|
|
|
|
2023-12-08 21:58:37 +00:00
|
|
|
WARNINGS := -fullwarn -verbose -woff 624,649,838,712,516,513,596,564,594,709
|
2023-10-03 06:59:01 +00:00
|
|
|
ASFLAGS := -march=vr4300 -32 -G0
|
|
|
|
COMMON_DEFINES := -D_MIPS_SZLONG=32
|
|
|
|
GBI_DEFINES := -DF3DEX_GBI
|
Match Libultra (#120)
* Matched perspective, contquery, contreaddata, recvmesg and sendmesg
* Fixed libultra compilation flags
* Matched viblack
* Matched virepeatline, visetmode, visetspecial and viswapbuf
* Matched cartrominit, dpsetstat, sptask, sptaskyield, visetevent, createthread, gettime, setthreadpri, settime, settimer and starthread
* Fixed bss bs
* Matched even more libultra stuff
* Matched even more
* __osRdbSend
* Decompiled most of the functions of libultra <3
* Matched last functions
* Added a separation to libultra macros
* Removed ARRLEN from controller.h
* Fix libultra warnings
---------
Co-authored-by: Alejandro Javier Asenjo Nitti <alejandro.asenjo88@gmail.com>
2024-02-14 15:24:31 +00:00
|
|
|
RELEASE_DEFINES := -DNDEBUG
|
2023-10-03 06:59:01 +00:00
|
|
|
AS_DEFINES := -DMIPSEB -D_LANGUAGE_ASSEMBLY -D_ULTRA64
|
Match Libultra (#120)
* Matched perspective, contquery, contreaddata, recvmesg and sendmesg
* Fixed libultra compilation flags
* Matched viblack
* Matched virepeatline, visetmode, visetspecial and viswapbuf
* Matched cartrominit, dpsetstat, sptask, sptaskyield, visetevent, createthread, gettime, setthreadpri, settime, settimer and starthread
* Fixed bss bs
* Matched even more libultra stuff
* Matched even more
* __osRdbSend
* Decompiled most of the functions of libultra <3
* Matched last functions
* Added a separation to libultra macros
* Removed ARRLEN from controller.h
* Fix libultra warnings
---------
Co-authored-by: Alejandro Javier Asenjo Nitti <alejandro.asenjo88@gmail.com>
2024-02-14 15:24:31 +00:00
|
|
|
C_DEFINES := -DLANGUAGE_C -D_LANGUAGE_C -DBUILD_VERSION=VERSION_H ${RELEASE_DEFINES}
|
2023-10-03 06:59:01 +00:00
|
|
|
ENDIAN := -EB
|
|
|
|
|
|
|
|
OPTFLAGS := -O2 -g3
|
|
|
|
MIPS_VERSION := -mips2
|
|
|
|
ICONV_FLAGS := --from-code=UTF-8 --to-code=EUC-JP
|
|
|
|
|
|
|
|
# Use relocations and abi fpr names in the dump
|
|
|
|
OBJDUMP_FLAGS := --disassemble --reloc --disassemble-zeroes -Mreg-names=32 -Mno-aliases
|
|
|
|
|
|
|
|
ifneq ($(OBJDUMP_BUILD), 0)
|
|
|
|
OBJDUMP_CMD = $(OBJDUMP) $(OBJDUMP_FLAGS) $@ > $(@:.o=.dump.s)
|
|
|
|
OBJCOPY_BIN = $(OBJCOPY) -O binary $@ $@.bin
|
|
|
|
else
|
|
|
|
OBJDUMP_CMD = @:
|
|
|
|
OBJCOPY_BIN = @:
|
|
|
|
endif
|
|
|
|
|
|
|
|
# rom compression flags
|
|
|
|
COMPFLAGS := --threads $(N_THREADS)
|
|
|
|
ifeq ($(NON_MATCHING),0)
|
|
|
|
COMPFLAGS += --matching
|
|
|
|
endif
|
|
|
|
|
|
|
|
#### Files ####
|
|
|
|
|
|
|
|
$(shell mkdir -p asm bin linker_scripts/$(VERSION)/auto)
|
|
|
|
|
|
|
|
SRC_DIRS := $(shell find src -type d)
|
|
|
|
ASM_DIRS := $(shell find asm/$(VERSION) -type d -not -path "asm/$(VERSION)/nonmatchings/*")
|
|
|
|
BIN_DIRS := $(shell find bin -type d)
|
|
|
|
|
|
|
|
C_FILES := $(foreach dir,$(SRC_DIRS),$(wildcard $(dir)/*.c))
|
2024-02-18 02:19:18 +00:00
|
|
|
C_FILES := $(filter-out %.inc.c,$(C_FILES))
|
2023-10-03 06:59:01 +00:00
|
|
|
S_FILES := $(foreach dir,$(ASM_DIRS) $(SRC_DIRS),$(wildcard $(dir)/*.s))
|
|
|
|
BIN_FILES := $(foreach dir,$(BIN_DIRS),$(wildcard $(dir)/*.bin))
|
|
|
|
O_FILES := $(foreach f,$(C_FILES:.c=.o),$(BUILD_DIR)/$f) \
|
|
|
|
$(foreach f,$(S_FILES:.s=.o),$(BUILD_DIR)/$f) \
|
|
|
|
$(foreach f,$(BIN_FILES:.bin=.o),$(BUILD_DIR)/$f)
|
|
|
|
|
|
|
|
|
|
|
|
# Automatic dependency files
|
|
|
|
DEP_FILES := $(O_FILES:.o=.d) \
|
|
|
|
$(O_FILES:.o=.asmproc.d)
|
|
|
|
|
|
|
|
# create build directories
|
|
|
|
$(shell mkdir -p $(BUILD_DIR)/linker_scripts/$(VERSION) $(BUILD_DIR)/linker_scripts/$(VERSION)/auto $(foreach dir,$(SRC_DIRS) $(ASM_DIRS) $(BIN_DIRS),$(BUILD_DIR)/$(dir)))
|
|
|
|
|
|
|
|
|
2023-10-14 10:03:11 +00:00
|
|
|
# directory flags
|
2024-03-03 22:44:36 +00:00
|
|
|
build/src/libultra/gu/%.o: OPTFLAGS := -O3 -g0
|
|
|
|
build/src/libultra/io/%.o: OPTFLAGS := -O1 -g0
|
|
|
|
build/src/libultra/os/%.o: OPTFLAGS := -O1 -g0
|
|
|
|
build/src/libultra/rmon/%.o: OPTFLAGS := -O1 -g0
|
2023-10-14 10:03:11 +00:00
|
|
|
|
|
|
|
# per-file flags
|
2024-02-21 22:10:06 +00:00
|
|
|
build/src/main/audio_synthesis.o: OPTFLAGS := -O2 -g0
|
|
|
|
build/src/main/audio_seqplayer.o: OPTFLAGS := -O2 -g0
|
|
|
|
build/src/main/audio_effects.o: OPTFLAGS := -O2 -g0
|
|
|
|
build/src/main/audio_playback.o: OPTFLAGS := -O2 -g0
|
|
|
|
build/src/main/audio_load.o: OPTFLAGS := -O2 -g0
|
|
|
|
build/src/main/audio_general.o: OPTFLAGS := -O2 -g0
|
|
|
|
build/src/main/audio_heap.o: OPTFLAGS := -O2 -g0
|
2024-03-05 22:51:52 +00:00
|
|
|
build/src/main/audio_thread.o: OPTFLAGS := -O2 -g0
|
2023-12-15 20:09:49 +00:00
|
|
|
build/src/main/sys_sprintf.o: OPTFLAGS := -O2 -g0
|
|
|
|
build/src/main/sys_math64.o: OPTFLAGS := -O2 -g0
|
2023-11-02 23:36:13 +00:00
|
|
|
|
Match Libultra (#120)
* Matched perspective, contquery, contreaddata, recvmesg and sendmesg
* Fixed libultra compilation flags
* Matched viblack
* Matched virepeatline, visetmode, visetspecial and viswapbuf
* Matched cartrominit, dpsetstat, sptask, sptaskyield, visetevent, createthread, gettime, setthreadpri, settime, settimer and starthread
* Fixed bss bs
* Matched even more libultra stuff
* Matched even more
* __osRdbSend
* Decompiled most of the functions of libultra <3
* Matched last functions
* Added a separation to libultra macros
* Removed ARRLEN from controller.h
* Fix libultra warnings
---------
Co-authored-by: Alejandro Javier Asenjo Nitti <alejandro.asenjo88@gmail.com>
2024-02-14 15:24:31 +00:00
|
|
|
build/src/libultra/debug/kdebugserver.o: OPTFLAGS := -O1 -g0
|
|
|
|
|
|
|
|
build/src/libultra/host/readhost.o: OPTFLAGS := -O1 -g0
|
|
|
|
|
2023-11-02 23:36:13 +00:00
|
|
|
build/src/libultra/libc/ldiv.o: OPTFLAGS := -O2 -g0
|
|
|
|
build/src/libultra/libc/string.o: OPTFLAGS := -O2 -g0
|
|
|
|
build/src/libultra/libc/xlitob.o: OPTFLAGS := -O2 -g0
|
Match Libultra (#120)
* Matched perspective, contquery, contreaddata, recvmesg and sendmesg
* Fixed libultra compilation flags
* Matched viblack
* Matched virepeatline, visetmode, visetspecial and viswapbuf
* Matched cartrominit, dpsetstat, sptask, sptaskyield, visetevent, createthread, gettime, setthreadpri, settime, settimer and starthread
* Fixed bss bs
* Matched even more libultra stuff
* Matched even more
* __osRdbSend
* Decompiled most of the functions of libultra <3
* Matched last functions
* Added a separation to libultra macros
* Removed ARRLEN from controller.h
* Fix libultra warnings
---------
Co-authored-by: Alejandro Javier Asenjo Nitti <alejandro.asenjo88@gmail.com>
2024-02-14 15:24:31 +00:00
|
|
|
build/src/libultra/libc/xldtob.o: OPTFLAGS := -O3 -g0
|
|
|
|
build/src/libultra/libc/xprintf.o: OPTFLAGS := -O3 -g0
|
2023-10-17 21:50:39 +00:00
|
|
|
build/src/libultra/libc/ll.o: OPTFLAGS := -O1 -g0
|
|
|
|
build/src/libultra/libc/ll.o: MIPS_VERSION := -mips3 -32
|
2023-10-29 21:19:30 +00:00
|
|
|
|
2023-10-03 06:59:01 +00:00
|
|
|
# cc & asm-processor
|
2023-10-17 20:43:47 +00:00
|
|
|
CC := $(ASM_PROC) $(ASM_PROC_FLAGS) $(IDO) -- $(AS) $(ASFLAGS) --
|
2023-11-02 23:36:13 +00:00
|
|
|
build/src/libultra/gu/sqrtf.o: CC := $(IDO)
|
Match Libultra (#120)
* Matched perspective, contquery, contreaddata, recvmesg and sendmesg
* Fixed libultra compilation flags
* Matched viblack
* Matched virepeatline, visetmode, visetspecial and viswapbuf
* Matched cartrominit, dpsetstat, sptask, sptaskyield, visetevent, createthread, gettime, setthreadpri, settime, settimer and starthread
* Fixed bss bs
* Matched even more libultra stuff
* Matched even more
* __osRdbSend
* Decompiled most of the functions of libultra <3
* Matched last functions
* Added a separation to libultra macros
* Removed ARRLEN from controller.h
* Fix libultra warnings
---------
Co-authored-by: Alejandro Javier Asenjo Nitti <alejandro.asenjo88@gmail.com>
2024-02-14 15:24:31 +00:00
|
|
|
build/src/libultra/gu/sinf.o: CC := $(IDO)
|
2023-10-17 20:43:47 +00:00
|
|
|
build/src/libultra/gu/lookat.o: CC := $(IDO)
|
2023-10-17 21:11:17 +00:00
|
|
|
build/src/libultra/gu/ortho.o: CC := $(IDO)
|
2023-10-17 21:50:39 +00:00
|
|
|
build/src/libultra/libc/ll.o: CC := $(IDO)
|
Match Libultra (#120)
* Matched perspective, contquery, contreaddata, recvmesg and sendmesg
* Fixed libultra compilation flags
* Matched viblack
* Matched virepeatline, visetmode, visetspecial and viswapbuf
* Matched cartrominit, dpsetstat, sptask, sptaskyield, visetevent, createthread, gettime, setthreadpri, settime, settimer and starthread
* Fixed bss bs
* Matched even more libultra stuff
* Matched even more
* __osRdbSend
* Decompiled most of the functions of libultra <3
* Matched last functions
* Added a separation to libultra macros
* Removed ARRLEN from controller.h
* Fix libultra warnings
---------
Co-authored-by: Alejandro Javier Asenjo Nitti <alejandro.asenjo88@gmail.com>
2024-02-14 15:24:31 +00:00
|
|
|
build/src/libultra/gu/perspective.o: CC := $(IDO)
|
|
|
|
build/src/libultra/gu/mtxutil.o: CC := $(IDO)
|
|
|
|
build/src/libultra/gu/cosf.o: CC := $(IDO)
|
|
|
|
build/src/libultra/libc/xprintf.o: CC := $(IDO)
|
|
|
|
build/src/libultra/libc/xldtob.o: CC := $(IDO)
|
2023-10-17 21:50:39 +00:00
|
|
|
|
2023-10-17 20:43:47 +00:00
|
|
|
#build/src/%.o: CC := $(ASM_PROC) $(ASM_PROC_FLAGS) $(IDO) -- $(AS) $(ASFLAGS) --
|
2023-10-03 06:59:01 +00:00
|
|
|
|
2023-10-16 09:04:16 +00:00
|
|
|
all: uncompressed
|
2023-10-03 06:59:01 +00:00
|
|
|
|
2023-12-10 19:27:26 +00:00
|
|
|
toolchain:
|
2023-12-08 21:58:37 +00:00
|
|
|
@$(MAKE) -s -C tools
|
|
|
|
|
2024-03-17 04:06:28 +00:00
|
|
|
torch:
|
|
|
|
@$(MAKE) -s -C tools torch
|
|
|
|
|
2023-10-06 08:00:22 +00:00
|
|
|
init:
|
2023-10-16 15:33:45 +00:00
|
|
|
@$(MAKE) clean
|
|
|
|
@$(MAKE) decompress
|
|
|
|
@$(MAKE) extract -j $(N_THREADS)
|
2024-02-18 02:19:18 +00:00
|
|
|
@$(MAKE) assets -j $(N_THREADS)
|
2023-12-08 21:58:37 +00:00
|
|
|
@$(MAKE) uncompressed -j $(N_THREADS)
|
2023-10-16 15:33:45 +00:00
|
|
|
@$(MAKE) compressed
|
2023-10-06 08:00:22 +00:00
|
|
|
|
2023-12-04 21:36:31 +00:00
|
|
|
SF := ___ ___\n/ __|| _|\n\__ \| _|\n|___/|_|\n
|
2023-10-03 06:59:01 +00:00
|
|
|
uncompressed: $(ROM)
|
|
|
|
ifneq ($(COMPARE),0)
|
2023-12-26 20:55:57 +00:00
|
|
|
@echo "$(GREEN)Calculating Rom Header Checksum... $(YELLOW)$<$(NO_COL)"
|
2023-11-30 22:35:40 +00:00
|
|
|
@$(PYTHON) $(COMPTOOL) -r $(ROM) .
|
2023-12-04 21:36:31 +00:00
|
|
|
@md5sum --status -c $(TARGET).$(VERSION).uncompressed.md5 && \
|
|
|
|
$(PRINT) "$(BLUE)$(TARGET).$(VERSION).uncompressed.z64$(NO_COL): $(GREEN)OK$(NO_COL)\n$(YELLOW) $(SF)" || \
|
2023-12-24 20:01:44 +00:00
|
|
|
$(PRINT) "$(BLUE)$(TARGET).$(VERSION).uncompressed.z64 $(RED)FAILED$(NO_COL)\n\
|
|
|
|
$(RED)CAN'T LET YOU DO THAT, STARFOX.$(NO_COL)\n"
|
2024-01-21 17:21:06 +00:00
|
|
|
@md5sum --status -c $(TARGET).$(VERSION).uncompressed.md5
|
2023-10-03 06:59:01 +00:00
|
|
|
endif
|
|
|
|
|
2023-10-15 21:00:39 +00:00
|
|
|
compressed: $(ROMC)
|
|
|
|
ifeq ($(COMPARE),1)
|
2023-12-04 21:36:31 +00:00
|
|
|
@echo "$(GREEN)Calculating Rom Header Checksum... $(YELLOW)$<$(NO_COL)"
|
2023-11-30 22:35:40 +00:00
|
|
|
@$(PYTHON) $(COMPTOOL) -r $(ROMC) .
|
2023-12-04 21:36:31 +00:00
|
|
|
@md5sum --status -c $(TARGET).$(VERSION).md5 && \
|
|
|
|
$(PRINT) "$(BLUE)$(TARGET).$(VERSION).z64$(NO_COL): $(GREEN)OK$(NO_COL)\n" || \
|
|
|
|
$(PRINT) "$(BLUE)$(TARGET).$(VERSION).z64 $(RED)FAILED$(NO_COL)\n"
|
2024-01-21 17:21:06 +00:00
|
|
|
@md5sum --status -c $(TARGET).$(VERSION).uncompressed.md5
|
2023-10-15 21:00:39 +00:00
|
|
|
endif
|
2023-10-03 06:59:01 +00:00
|
|
|
|
|
|
|
#### Main Targets ###
|
|
|
|
|
2023-10-16 09:12:15 +00:00
|
|
|
decompress: $(BASEROM)
|
2023-10-15 22:04:03 +00:00
|
|
|
@echo "Decompressing ROM..."
|
2023-10-16 13:54:41 +00:00
|
|
|
@$(PYTHON) $(COMPTOOL) -de $(COMPTOOL_DIR) -m $(MIO0) $(BASEROM) $(BASEROM_UNCOMPRESSED)
|
2023-10-15 07:50:10 +00:00
|
|
|
|
2023-10-03 05:57:03 +00:00
|
|
|
extract:
|
2023-10-16 17:55:18 +00:00
|
|
|
@$(RM) -r asm/$(VERSION) bin/$(VERSION)
|
|
|
|
@echo "Unifying yamls..."
|
2023-12-04 18:50:52 +00:00
|
|
|
@$(CAT) yamls/$(VERSION)/header.yaml yamls/$(VERSION)/main.yaml yamls/$(VERSION)/assets.yaml yamls/$(VERSION)/overlays.yaml > $(SPLAT_YAML)
|
2023-10-16 17:55:18 +00:00
|
|
|
@echo "Extracting..."
|
|
|
|
@$(SPLAT) $(SPLAT_YAML)
|
2023-10-03 06:59:01 +00:00
|
|
|
|
2024-02-18 02:19:18 +00:00
|
|
|
assets:
|
2024-03-27 04:12:50 +00:00
|
|
|
@echo "Extracting assets from ROM..."
|
2024-03-11 01:38:13 +00:00
|
|
|
@$(TORCH) code $(BASEROM_UNCOMPRESSED) -v
|
2024-02-19 01:34:56 +00:00
|
|
|
@$(TORCH) header $(BASEROM_UNCOMPRESSED)
|
2024-03-03 15:19:57 +00:00
|
|
|
@$(TORCH) modding export $(BASEROM_UNCOMPRESSED)
|
2024-02-18 02:19:18 +00:00
|
|
|
|
2023-10-03 06:59:01 +00:00
|
|
|
clean:
|
2024-03-29 17:31:28 +00:00
|
|
|
rm -f torch.hash.yml
|
2023-10-03 06:59:01 +00:00
|
|
|
@git clean -fdx asm/
|
2023-10-03 09:13:41 +00:00
|
|
|
@git clean -fdx bin/
|
2023-10-03 06:59:01 +00:00
|
|
|
@git clean -fdx build/
|
2024-02-21 15:52:42 +00:00
|
|
|
@git clean -fdx src/assets/
|
2024-02-22 03:24:52 +00:00
|
|
|
@git clean -fdx include/assets/
|
2023-11-24 19:11:20 +00:00
|
|
|
@git clean -fdx linker_scripts/*.ld
|
2023-10-03 06:59:01 +00:00
|
|
|
|
2023-10-07 07:38:28 +00:00
|
|
|
format:
|
2023-12-04 21:36:31 +00:00
|
|
|
@$(PYTHON) $(TOOLS)/format.py -j $(N_THREADS)
|
2023-10-07 07:38:28 +00:00
|
|
|
|
|
|
|
checkformat:
|
2023-10-16 09:46:40 +00:00
|
|
|
@$(TOOLS)/check_format.sh -j $(N_THREADS)
|
2023-10-07 07:38:28 +00:00
|
|
|
|
2023-10-14 08:14:25 +00:00
|
|
|
# asm-differ expected object files
|
|
|
|
expected:
|
|
|
|
mkdir -p expected/build
|
|
|
|
rm -rf expected/build/
|
|
|
|
cp -r build/ expected/build/
|
|
|
|
|
2023-11-27 12:39:12 +00:00
|
|
|
context:
|
|
|
|
@echo "Generating ctx.c ..."
|
|
|
|
@$(PYTHON) ./tools/m2ctx.py $(filter-out $@, $(MAKECMDGOALS))
|
2023-10-03 06:59:01 +00:00
|
|
|
|
2023-11-28 18:26:18 +00:00
|
|
|
disasm:
|
|
|
|
@$(RM) -r asm/$(VERSION) bin/$(VERSION)
|
|
|
|
@echo "Unifying yamls..."
|
2023-12-06 12:20:22 +00:00
|
|
|
@$(CAT) yamls/$(VERSION)/header.yaml yamls/$(VERSION)/main.yaml yamls/$(VERSION)/assets.yaml yamls/$(VERSION)/overlays.yaml > $(SPLAT_YAML)
|
2023-11-28 18:26:18 +00:00
|
|
|
@echo "Extracting..."
|
|
|
|
@$(SPLAT) $(SPLAT_YAML) --disassemble-all
|
|
|
|
|
2023-10-03 06:59:01 +00:00
|
|
|
#### Various Recipes ####
|
|
|
|
|
2023-10-16 17:47:20 +00:00
|
|
|
# Final ROM
|
2023-10-15 22:47:03 +00:00
|
|
|
$(ROMC): $(BASEROM_UNCOMPRESSED)
|
2023-12-04 21:36:31 +00:00
|
|
|
$(call print,Compressing ROM...,$<,$@)
|
2023-10-15 22:54:57 +00:00
|
|
|
@$(PYTHON) $(COMPTOOL) -c $(ROM) $(ROMC)
|
2023-10-15 21:00:39 +00:00
|
|
|
|
2023-10-16 17:51:04 +00:00
|
|
|
# Uncompressed ROM
|
|
|
|
$(ROM): $(ELF)
|
2023-12-04 21:36:31 +00:00
|
|
|
$(call print,ELF->ROM:,$<,$@)
|
|
|
|
$(V)$(OBJCOPY) -O binary $< $@
|
2023-10-16 17:51:04 +00:00
|
|
|
|
2023-10-16 17:50:24 +00:00
|
|
|
# Link
|
2024-02-20 18:01:42 +00:00
|
|
|
$(ELF): $(LIBULTRA_O) $(O_FILES) $(LD_SCRIPT) $(BUILD_DIR)/linker_scripts/$(VERSION)/hardware_regs.ld $(BUILD_DIR)/linker_scripts/$(VERSION)/undefined_syms.ld $(BUILD_DIR)/linker_scripts/$(VERSION)/pif_syms.ld
|
2023-12-04 21:36:31 +00:00
|
|
|
$(call print,Linking:,$<,$@)
|
|
|
|
$(V)$(LD) $(LDFLAGS) -T $(LD_SCRIPT) \
|
2023-10-03 06:59:01 +00:00
|
|
|
-T $(BUILD_DIR)/linker_scripts/$(VERSION)/hardware_regs.ld -T $(BUILD_DIR)/linker_scripts/$(VERSION)/undefined_syms.ld -T $(BUILD_DIR)/linker_scripts/$(VERSION)/pif_syms.ld \
|
|
|
|
-Map $(LD_MAP) -o $@
|
|
|
|
|
2023-10-16 17:50:24 +00:00
|
|
|
# PreProcessor
|
2023-10-03 06:59:01 +00:00
|
|
|
$(BUILD_DIR)/%.ld: %.ld
|
2023-12-04 21:36:31 +00:00
|
|
|
$(call print,PreProcessor:,$<,$@)
|
|
|
|
$(V)$(CPP) $(CPPFLAGS) $(BUILD_DEFINES) $(IINC) $< > $@
|
2023-10-03 06:59:01 +00:00
|
|
|
|
2023-10-14 08:21:21 +00:00
|
|
|
# Binary
|
2023-10-03 06:59:01 +00:00
|
|
|
$(BUILD_DIR)/%.o: %.bin
|
2023-12-04 21:36:31 +00:00
|
|
|
$(call print,Binary:,$<,$@)
|
|
|
|
$(V)$(OBJCOPY) -I binary -O elf32-big $< $@
|
2023-10-03 06:59:01 +00:00
|
|
|
|
2023-10-14 08:21:21 +00:00
|
|
|
# Assembly
|
2023-10-03 06:59:01 +00:00
|
|
|
$(BUILD_DIR)/%.o: %.s
|
2023-12-04 21:36:31 +00:00
|
|
|
$(call print,Assembling:,$<,$@)
|
|
|
|
$(V)$(CPP) $(CPPFLAGS) $(BUILD_DEFINES) $(IINC) -I $(dir $*) $(COMMON_DEFINES) $(RELEASE_DEFINES) $(GBI_DEFINES) $(AS_DEFINES) $< | $(ICONV) $(ICONV_FLAGS) | $(AS) $(ASFLAGS) $(ENDIAN) $(IINC) -I $(dir $*) -o $@
|
|
|
|
$(V)$(OBJDUMP_CMD)
|
2023-10-03 06:59:01 +00:00
|
|
|
|
2023-10-14 08:21:21 +00:00
|
|
|
# C
|
2023-10-03 06:59:01 +00:00
|
|
|
$(BUILD_DIR)/%.o: %.c
|
2023-12-04 21:36:31 +00:00
|
|
|
$(call print,Compiling:,$<,$@)
|
|
|
|
@$(CC_CHECK) $(CC_CHECK_FLAGS) $(IINC) -I $(dir $*) $(CHECK_WARNINGS) $(BUILD_DEFINES) $(COMMON_DEFINES) $(RELEASE_DEFINES) $(GBI_DEFINES) $(C_DEFINES) $(MIPS_BUILTIN_DEFS) -o $@ $<
|
|
|
|
$(V)$(CC) -c $(CFLAGS) $(BUILD_DEFINES) $(IINC) $(WARNINGS) $(MIPS_VERSION) $(ENDIAN) $(COMMON_DEFINES) $(RELEASE_DEFINES) $(GBI_DEFINES) $(C_DEFINES) $(OPTFLAGS) -o $@ $<
|
|
|
|
$(V)$(OBJDUMP_CMD)
|
|
|
|
$(V)$(RM_MDEBUG)
|
2023-10-03 06:59:01 +00:00
|
|
|
|
2023-10-17 21:50:39 +00:00
|
|
|
# Patch ll.o
|
|
|
|
build/src/libultra/libc/ll.o: src/libultra/libc/ll.c
|
2023-12-04 21:36:31 +00:00
|
|
|
$(call print,Patching:,$<,$@)
|
|
|
|
@$(CC_CHECK) $(CC_CHECK_FLAGS) $(IINC) -I $(dir $*) $(CHECK_WARNINGS) $(BUILD_DEFINES) $(COMMON_DEFINES) $(RELEASE_DEFINES) $(GBI_DEFINES) $(C_DEFINES) $(MIPS_BUILTIN_DEFS) -o $@ $<
|
|
|
|
$(V)$(CC) -c $(CFLAGS) $(BUILD_DEFINES) $(IINC) $(WARNINGS) $(MIPS_VERSION) $(ENDIAN) $(COMMON_DEFINES) $(RELEASE_DEFINES) $(GBI_DEFINES) $(C_DEFINES) $(OPTFLAGS) -o $@ $<
|
|
|
|
$(V)$(PYTHON) tools/set_o32abi_bit.py $@
|
|
|
|
$(V)$(OBJDUMP_CMD)
|
|
|
|
$(V)$(RM_MDEBUG)
|
2023-10-17 21:50:39 +00:00
|
|
|
|
2023-10-03 06:59:01 +00:00
|
|
|
-include $(DEP_FILES)
|
|
|
|
|
|
|
|
# Print target for debugging
|
2023-10-15 23:41:23 +00:00
|
|
|
print-% : ; $(info $* is a $(flavor $*) variable set to [$($*)]) @true
|
|
|
|
|
2024-02-18 02:19:18 +00:00
|
|
|
.PHONY: all uncompressed compressed clean init extract expected format checkformat decompress assets context disasm toolchain
|