source: mainline/arch/mips/Makefile.inc@ 39ae77b

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 39ae77b 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
Line 
1MIPS_TARGET=mipsel-linux-gnu
2
3MIPS_CC_DIR=/usr/local/mipsel/bin
4MIPS_BINUTILS_DIR=/usr/local/mipsel/bin
5
6CC=$(MIPS_CC_DIR)/$(MIPS_TARGET)-gcc
7AS=$(MIPS_BINUTILS_DIR)/$(MIPS_TARGET)-as
8LD=$(MIPS_BINUTILS_DIR)/$(MIPS_TARGET)-ld
9OBJDUMP=$(MIPS_BINUTILS_DIR)/$(MIPS_TARGET)-objdump
10OBJCOPY=$(MIPS_BINUTILS_DIR)/$(MIPS_TARGET)-objcopy
11BFD_NAME=elf32-tradlittlemips
12BFD_ARCH=mips
13
14ASFLAGS=-mips3
15
16DEFS=-DARCH=$(ARCH)
17CPPFLAGS=$(DEFS) -mno-abicalls -nostdinc -I../include
18CFLAGS=$(CPPFLAGS) -mips2 -G 0 -nostdlib -fno-builtin -Werror-implicit-function-declaration -Wmissing-prototypes -Werror -O2 -msoft-float
19LFLAGS=-mips2 -M -no-check-sections
20
21arch_sources= \
22 arch/start.S \
23 arch/context.S \
24 arch/panic.s \
25 arch/mips.c \
26 arch/dummy.s \
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 \
35 arch/mm/tlb.c \
36 arch/fpu_context.c \
37 arch/fmath.c
Note: See TracBrowser for help on using the repository browser.