Changeset 4241683 in mainline
- Timestamp:
- 2006-03-14T20:45:36Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 56972c81
- Parents:
- 7d1562e9
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
Makefile
r7d1562e9 r4241683 33 33 34 34 DIRS = \ 35 softint \ 36 softfloat \ 35 37 libc \ 36 38 libipc \ 37 init \ 38 softfloat \ 39 softint 39 init 40 40 41 41 BUILDS := $(addsuffix .build,$(DIRS)) -
init/Makefile
r7d1562e9 r4241683 59 59 60 60 $(OUTPUT): $(OBJECTS) 61 $(LD) -T $(LIBC_PREFIX)/arch/$(ARCH)/_link.ld $(LFLAGS) $(OBJECTS) $(LIBC_PREFIX)/libc.a $(LIBIPC_PREFIX)/libipc.a-o $@ -Map $(OUTPUT).map61 $(LD) -T $(LIBC_PREFIX)/arch/$(ARCH)/_link.ld $(OBJECTS) $(LIBC_PREFIX)/libc.a $(LIBIPC_PREFIX)/libipc.a $(LFLAGS) -o $@ -Map $(OUTPUT).map 62 62 63 63 disasm: -
init/init.c
r7d1562e9 r4241683 35 35 36 36 /* 37 extern char _heap; 38 void test_mremap(void) 37 static void test_mremap(void) 39 38 { 40 39 printf("Writing to good memory\n"); … … 52 51 */ 53 52 /* 54 extern char _heap;55 53 static void test_sbrk(void) 56 54 { … … 69 67 } 70 68 */ 71 72 69 /* 73 extern char _heap;74 70 static void test_malloc(void) 75 71 { -
libc/arch/ia64/Makefile.inc
r7d1562e9 r4241683 33 33 TOOLCHAIN_DIR = /usr/local/ia64/bin 34 34 CFLAGS += -fno-unwind-tables 35 LFLAGS += -N 35 LFLAGS += -N ../softint/softint.a 36 36 AFLAGS += 37 37 -
softint/Makefile
r7d1562e9 r4241683 30 30 # 31 31 32 SOFTINT_PREFIX = . 32 LIBC_PREFIX = ../libc 33 33 ## Setup toolchain 34 34 # 35 35 36 include $(SOFTINT_PREFIX)/Makefile.toolchain 36 include $(LIBC_PREFIX)/Makefile.toolchain 37 38 CFLAGS += -Iinclude 37 39 38 40 ## Sources … … 43 45 44 46 GENERIC_OBJECTS := $(addsuffix .o,$(basename $(GENERIC_SOURCES))) 45 ARCH_OBJECTS := $(addsuffix .o,$(basename $(ARCH_SOURCES)))46 47 47 48 .PHONY: all clean depend … … 56 57 57 58 depend: 58 $(CC) $(DEFS) $(CFLAGS) -M $( ARCH_SOURCES) $(GENERIC_SOURCES) > Makefile.depend59 $(CC) $(DEFS) $(CFLAGS) -M $(GENERIC_SOURCES) > Makefile.depend 59 60 60 61 softint.a: depend $(ARCH_OBJECTS) $(GENERIC_OBJECTS)
Note:
See TracChangeset
for help on using the changeset viewer.