diff options
author | Max <mparisi@stevens.edu> | 2020-10-07 15:41:23 -0400 |
---|---|---|
committer | Max <mparisi@stevens.edu> | 2020-10-07 15:41:23 -0400 |
commit | 4043dc5ee3c5457fb332042acccaa6e4ec132332 (patch) | |
tree | 9888844ad464f2914cc906530af7716b08703a46 | |
parent | 584d9820b7537d98faae452b833db7e4f1589816 (diff) |
add GC/ to compiler/linker path in makefile
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -72,8 +72,8 @@ MWCC_VERSION := 3.0 AS := $(DEVKITPPC)/bin/powerpc-eabi-as OBJCOPY := $(DEVKITPPC)/bin/powerpc-eabi-objcopy CPP := cpp -P -CC := $(WINE) tools/mwcc_compiler/$(MWCC_VERSION)/mwcceppc.exe -LD := $(WINE) tools/mwcc_compiler/$(MWCC_VERSION)/mwldeppc.exe +CC := $(WINE) tools/mwcc_compiler/GC/$(MWCC_VERSION)/mwcceppc.exe +LD := $(WINE) tools/mwcc_compiler/GC/$(MWCC_VERSION)/mwldeppc.exe ELF2DOL := tools/elf2dol/elf2dol$(EXE) SHA1SUM := sha1sum PYTHON := python3 |