more compiler binaries; need IDF

This commit is contained in:
farisawan-2000 2020-05-28 11:30:33 -04:00
parent 29ec455867
commit 31561e1fd2
34 changed files with 5 additions and 4 deletions

View File

@ -20,7 +20,7 @@ endif
##################### Compiler Options #######################
# TODO: figure out how to use the compiler binaries (and incorporate relevant libraries)
IRIX_ROOT := tools/mipspro-7.2compiler
CC := $(QEMU_IRIX) -silent -L $(IRIX_ROOT) $(IRIX_ROOT)/usr/bin/cc
CC := $(QEMU_IRIX) -silent -L $(IRIX_ROOT) $(IRIX_ROOT)/usr/bin/NCC
CROSS = mips-linux-gnu-
AS = $(CROSS)as
@ -56,12 +56,12 @@ TEXTURES_DIR = textures
S_FILES := $(foreach dir,$(ASM_DIRS),$(wildcard $(dir)/*.s))
C_FILES := $(foreach dir,$(SRC_DIRS),$(wildcard $(dir)/*.c))
C_FILES := $(foreach dir,$(SRC_DIRS),$(wildcard $(dir)/*.cc))
BUILD_ASM_DIRS := $(foreach dir,$(ASM_DIRS),$(wildcard $(dir)/**/))
# Object files
O_FILES := $(foreach file,$(C_FILES),$(BUILD_DIR)/$(file:.c=.o)) \
O_FILES := $(foreach file,$(C_FILES),$(BUILD_DIR)/$(file:.cc=.o)) \
$(foreach file,$(S_FILES),$(BUILD_DIR)/$(file:.s=.o))
######################## Targets #############################
@ -95,7 +95,7 @@ $(BUILD_DIR)/%.o: %.s Makefile $(MAKEFILE_SPLIT) | $(BUILD_DIR)
$(AS) $(ASFLAGS) -o $@ $<
$(BUILD_DIR)/%.o: %.c | $(BUILD_DIR)
$(BUILD_DIR)/%.o: %.cc | $(BUILD_DIR)
$(CC) $(CFLAGS) -o $@ $<
$(BUILD_DIR)/$(LD_SCRIPT): $(LD_SCRIPT)

Binary file not shown.

Binary file not shown.

BIN
tools/mipspro-7.2compiler/lib/rld Executable file

Binary file not shown.

View File

@ -0,0 +1 @@
../lib/DCC/edgcpfe

0
tools/mipspro-7.2compiler/usr/lib/DCC/as0 Normal file → Executable file
View File

0
tools/mipspro-7.2compiler/usr/lib/DCC/as1 Normal file → Executable file
View File

0
tools/mipspro-7.2compiler/usr/lib/DCC/edgcpfe.eh Normal file → Executable file
View File

0
tools/mipspro-7.2compiler/usr/lib/DCC/ld Normal file → Executable file
View File

0
tools/mipspro-7.2compiler/usr/lib/DCC/ugen Normal file → Executable file
View File

0
tools/mipspro-7.2compiler/usr/lib/DCC/uopt Normal file → Executable file
View File

Binary file not shown.

Binary file not shown.

0
tools/mipspro-7.2compiler/usr/lib32/cmplrs/fecc Normal file → Executable file
View File

0
tools/mipspro-7.2compiler/usr/relnotes/c++_fe/TC Normal file → Executable file
View File

0
tools/mipspro-7.2compiler/usr/relnotes/c++_fe/ch1.z Normal file → Executable file
View File

View File