source: mainline/arch/mips/Makefile.inc@ e949fd6

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since e949fd6 was ae9624e, checked in by Ondrej Palkovsky <ondrap@…>, 20 years ago

Symbol table now contains static functions too.
NOTE: gcc heavily inlines, be aware of optimizations.

Removed excesive item from boot page tables.

  • Property mode set to 100644
File size: 933 bytes
RevLine 
[0970f43]1MIPS_TARGET=mipsel-linux-gnu
[f761f1eb]2
[0970f43]3MIPS_CC_DIR=/usr/local/mipsel/bin
4MIPS_BINUTILS_DIR=/usr/local/mipsel/bin
[f761f1eb]5
6CC=$(MIPS_CC_DIR)/$(MIPS_TARGET)-gcc
7AS=$(MIPS_BINUTILS_DIR)/$(MIPS_TARGET)-as
8LD=$(MIPS_BINUTILS_DIR)/$(MIPS_TARGET)-ld
[ae9624e]9OBJDUMP=$(MIPS_BINUTILS_DIR)/$(MIPS_TARGET)-objdump
[ab08b42]10OBJCOPY=$(MIPS_BINUTILS_DIR)/$(MIPS_TARGET)-objcopy
11BFD_NAME=elf32-tradlittlemips
12BFD_ARCH=mips
[f761f1eb]13
[0970f43]14ASFLAGS=-mips3
[f761f1eb]15
16DEFS=-DARCH=$(ARCH)
[e2e56fa9]17CPPFLAGS=$(DEFS) -mno-abicalls -nostdinc -I../include
[437e35a0]18CFLAGS=$(CPPFLAGS) -mips2 -G 0 -nostdlib -fno-builtin -Werror-implicit-function-declaration -Wmissing-prototypes -Werror -O2 -msoft-float
[4f1475d4]19LFLAGS=-mips2 -M -no-check-sections
[f761f1eb]20
21arch_sources= \
22 arch/start.S \
23 arch/context.S \
24 arch/panic.s \
25 arch/mips.c \
[3902f8a4]26 arch/dummy.s \
[f761f1eb]27 arch/putchar.c \
28 arch/asm.s \
29 arch/exception.c \
30 arch/interrupt.c \
31 arch/cache.c \
32 arch/cpu/cpu.c \
33 arch/mm/frame.c \
34 arch/mm/page.c \
[0ca6faa]35 arch/mm/tlb.c \
[c7bb8b05]36 arch/fpu_context.c \
37 arch/fmath.c
Note: See TracBrowser for help on using the repository browser.