- fixed endian flags regression

git-svn-id: http://moon:8086/svn/mips@150 a8ebac50-d88d-4704-bea3-6648445a41b3
This commit is contained in:
2021-04-06 14:23:22 +00:00
parent 7634bf8d41
commit 59164af424
2 changed files with 6 additions and 8 deletions
+5 -4
View File
@@ -9,18 +9,19 @@ WITH_TLB ?= n
ENDIANESS ?= eb
DEBUGGER ?= mips
DEFINES := -DBOARD_$(BOARD)
DEFINES := -D$(BOARD)
CCFLAGS := -fno-rtti -fno-use-cxa-atexit -fno-threadsafe-statics
CFLAGS := -fno-exceptions -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -nostartfiles -Os
CFLAGS_TLB-y := -DSYS_IO_BASE=0xAC000000 -DSDRAM_BASE=0x80000000 -DFLASH_BASE_IO=0xA4000000 -DFLASH_BASE_MEM=0x88000000
CFLAGS_TLB-n := -DSYS_IO_BASE=0xA0000000 -DSDRAM_BASE=0x40000000 -DFLASH_BASE_IO=0xA4000000 -DFLASH_BASE_MEM=0x00000000
CFLAGS-eb =-EB
CFLAGS-el =-EL
ENDIAN_FLAGS-eb := -EB
ENDIAN_FLAGS-el := -EL
ENDIAN_FLAGS := $(ENDIAN_FLAGS-$(ENDIANESS))
CFLAGS += $(CFLAGS_TLB-$(WITH_TLB))
CFLAGS += $(CFLAGS-$(ENDIANESS))
CFLAGS += $(ENDIAN_FLAGS)
CFLAGS += -msoft-float -march=r3000
CFLAGS += $(CFLAGS-$(BOARD))
+1 -4
View File
@@ -6,9 +6,6 @@ include ../make/mips_app.mk
PROG-ml402 = $(addprefix $(BUILD_DIR)/, hello.elf testbench.elf test_irq.elf dhry.elf queens.elf stanford.elf paranoia.elf rmd160_test.elf Bessel.elf whet.elf phrasen.elf dttl.elf richards_benchmark.elf test_exception.elf life.elf r3.elf gunzip.elf basic_math.elf jman_patches.elf jman_patchmeshes.elf jman_polys.elf test_hpi.elf test_vga.elf test_fft.elf)
PROG-denano = $(addprefix $(BUILD_DIR)/, hello.elf dhry.elf queens.elf stanford.elf paranoia.elf rmd160_test.elf Bessel.elf whet.elf phrasen.elf dttl.elf richards_benchmark.elf test_exception.elf testbench_denano.elf)
PROG-sim = $(addprefix $(BUILD_DIR)/, hello.elf)
CFLAGS-sim := -O0
CFLAGS += $(CFLAGS-$(BOARD))
all: $(PROG-$(BOARD))
@@ -25,7 +22,7 @@ $(BUILD_DIR)/test_fft.elf: $(BUILD_DIR) test_fft.c
$(OBJCOPY) -O ihex -I binary $@.flash.bin $@.hex
$(BUILD_DIR)/hello.elf: $(BUILD_DIR) hello.c
$(CC) $(CFLAGS) -o $@ -Os hello.c $(LIBS) >$@.map
$(CC) $(CFLAGS) -o $@ hello.c $(LIBS) >$@.map
$(OBJDUMP) -d $@ > $@.dis
$(OBJCOPY) $@ -O binary $@.bin
$(OBJCOPY) -O srec $@ $@.srec