Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for building on ARM64 MacOS #854

Open
wants to merge 12 commits into
base: develop/2.4.0
Choose a base branch
from
5 changes: 5 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -664,7 +664,12 @@ unf: $(ROM) $(LOADER_EXEC)
libultra: $(BUILD_DIR)/libultra.a

patch: $(ROM)
ifeq ($(shell uname), Darwin)
$(error "The 'make patch' command is not supported on macOS.")
gheskett marked this conversation as resolved.
Show resolved Hide resolved
else
$(FLIPS) --create --bps $(shell python3 tools/detect_baseroms.py $(VERSION)) $(ROM) $(BUILD_DIR)/$(TARGET_STRING).bps
endif


# Extra object file dependencies
$(BUILD_DIR)/asm/ipl3.o: $(IPL3_RAW_FILES)
Expand Down